FIX. RadForm - setting the CancelButton property of the form to a button named exactly CancelButton, will prevent the button click event from firing when Esc is pressed. Changing the name of the button anything else will resolve the case. Comment: This is the default beavior of the standard button and comes from .NET Framework.
When you set the FormBorderStyle property to FormBorderStyle.None, the form size defined initially is changed.
To reproduce: - Set RadForm.FormBorderStyle to FixedDialog - Set some Icon to the form - Run and the icon is not visible With the standard form, the icon is visible. Workaround: use FormBorderStyle = FixedSingle
1. Create a new project and add a button. 2. On button click show a new RadForm by calling its ShowDialog method from another thread. You should use Invoke.
1. Create a new project with RadForm and RadGridView. 2. Handle the ScreenTipNeeded event to show screen tips in RadGridView cells. 3. Run the project and note that the first time when showing a screen tip, RadForm changes its size.
FIX. Pressing Escape does not trigger the Click event of the form's CancelButton.
FIX. RadRibbonForm - ApplicationButtonElement and QuickAccessToolBar are cut off when Aero if off and the form is maximized
Steps to reproduce. 1. Add a grid and a button to a form. 2. Set the button as the AcceptButton 3. Add a text column to the grid 4. Run the project, open a cell for edit, hit enter and the button will be clicked closing the form in the process.
FIX. RadForm - setting the Visibility of the TitleBar to collapsed does not take effect until the form is resized.
When setting an icon to RadForm, it should be resized automatically.
If you set the RadForm's title bar to string that contains the ampersand symbol (&), the symbol is replaced with underline symbol.
If RadForm is an MDI child and it initially appears as Maximized, there is some space left between the bottom border of the child form and the bottom border of the parent form. In order to reprodue the issue, you should also have a RadMenu docked to top that has size bigger than its default size.
RadForm loses its scrollbars when maximized and also throws an exception in rare cases when the user scrolls with the mouse wheel.