Hello,
I'm looking for a tab control like the attached one.
Is there a winforms control which can be customized to look like that?
I've tried with Dock, but i don't want the user to drag around or close the tabs, and the Dock does not allow to arrange the tabs on the left without vertically rotating the text.
Thank you!
From this image, as you can see I have a formatting value condition if the cell is >= 80. If my cell values are strings, how do I control the conversion to an integer value in this case or have control of how this validation takes place? -8000 is nowhere near being >= 80...
Also - How do I control everything else in that Window? It isn't even using my application icon for the form icon. :/
Hi.
I am accessing item through keyboard but issue is when access any form i lost my focus from main form so i cant access then cause i lost focus from main.
1) i want to access submenuitems through keyboard whether am focusing on any form.
I am trying to duplicate the "ShowUpDown" feature from the RadDateTimePicker. Ultimately, I want the user to navigate the DropDownList only using the Up and Down arrows, and disable the actual list that opens on the DropDownList. Is this possible?
Hi,
I have a base form with a RadPageView and one RadPageViewPage. I dropped two RadPanel and one RadGridView into the RadPageViewPage. I set the modifier property of all this five controls to public. And then I save this RadForm.
I created a second RadForm and inherited this one from the previous one. In this second form I can see all the controls in the designer. I can modified the properties of the two RadPanels but I can't modified the properties of the RadGridView in the properties windows.
What can I do in order to modified the properties of the RadGridView of the second form at design time ?
Hi all,
Unfortunatelly (bug or feature?) the ValueChanging Event routine of the RadTimePicker just pass CancelEventArgs but not ValueChangingEventArgs like in RadDateTimePicker. How can I get the new value (value that is entered by the time picker dialog) in the value changing event? I need it for validation.
Thanks!
Jürgen
I am getting issue in form resize..
1) i cannot set form height in FloatingWindowCreated as i mentioned below. kindly tell me how to resize form height as per required.
void buyDock_FloatingWindowCreated(object sender, FloatingWindowEventArgs e)
{
e.Window.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
e.Window.MinimumSize = new Size(735, 60);
e.Window.StartPosition = FormStartPosition.CenterScreen;
}
Thanks in addvance.