Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Setting the ShowIcon to false hides the icon. You then decide to show the icon again, and you set ShowIcon back to true. However, the icon does not appear again.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: Form
Type: Bug Report
0
Steps to reproduce:
Create & show a RadRibbonForm under Windows 8 and exception will occurred.
Completed
Last Updated: 30 May 2014 10:33 by ADMIN
To reproduce:
- set your windows taskbar to auto-hide. 
- Add RadForm to a blank solution.
- Change the forms behaviour with the following one:

RadRibbonFormBehavior radRibbonFormBehavior1 = new RadRibbonFormBehavior();
this.radRibbonFormBehavior1.Form = this;
this.FormBehavior = this.radRibbonFormBehavior1;

- When you maximize the form the taskbar won't show like in the normal case.
Declined
Last Updated: 20 May 2014 14:07 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: Form
Type: Bug Report
7
it seems to be when I'm deriving from RadForm the NotifyPropertyChanged Doesn't seem to work

It is binding to the Text Propery of the dockwindow. what i am trying to do is bind to a propery of my class called FormText (This is not the Frm.Text but Frm.FormText) a completly diffrent property. This is not possible to do with the below code.

What I am ultimelty trying to do is have a class that is derived from RadForm so i can add a BindingSource to the form and load it with data.
I'm then trying to bind to the Possition and Item Count fo the BindingSource to show the user what record/how many records there are.

I need to re-bind this each time the tab is changed so the user is always seeing the records for the Selected form

Resolution: 
Scenario is not common and the issue is not related directly to our form. Since our RadForm is ISupportInitialize and in the case that the developer does not call Form EndInitialize method the Microsoft binding will reject the binding because Form IsInitialized property is false. So these methods must be called:
((System.ComponentModel.ISupportInitialize)(radForm1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(radForm1)).EndInit();
Completed
Last Updated: 24 Apr 2014 13:31 by Florent
ADMIN
Created by: Georgi I. Georgiev
Comments: 9
Category: Form
Type: Bug Report
8
To reproduce:
Add a RadForm and set its icon property. You will notice that the Form's icon is changed but it is not in the taskbar.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
RadRibbonForm back stage button is missplaced when in maximized state with office2010SilverTheme

Workarouond: Set the margin when the window is set to maximize.

void Form1_Resize(object sender, EventArgs e)
        {
            if (this.WindowState == FormWindowState.Maximized)
            {
                this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(3, 35, 3, 0);
            }
            else
            {
                this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Margin = new Padding(3, 33, 3, 0);
            }
        }
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: Form
Type: Bug Report
1
Form command buttons incorrectly become visible in the following scenario:

1. Create a new Form.
2. Make the Form inherit from the RadRibbonForm class, or use the RadRibbonForm behavior.
3. Launch the application to display the new Form.
4. Click a few pixels below the Close, Maximize or Minimize buttons.
5. White buttons will appear with the same functionality as the Close, Maximize and Minimize buttons.
Completed
Last Updated: 17 Mar 2014 16:02 by Osvaldo
Completed
Last Updated: 20 Feb 2014 15:07 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Form
Type: Bug Report
1
To reproduce:
-add a RadForm and specify its Icon property;
-modify Resources area on project's Properties -> Application tab in order to add Icon and manifest;
-run the project and you will notice that the specified icon is displayed in the taskbar. However, Alt+Tab panel does not display the certain RadForm's icon.
Declined
Last Updated: 17 Feb 2014 17:14 by ADMIN
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.
Completed
Last Updated: 13 Feb 2014 13:18 by Svetlin
When you set the FormBorderStyle property to FormBorderStyle.None, the form size defined initially is changed.
Completed
Last Updated: 11 Feb 2014 13:52 by ADMIN
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
Completed
Last Updated: 27 Dec 2012 07:03 by ADMIN
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.
Completed
Last Updated: 10 Oct 2012 03:21 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Form
Type: Bug Report
0
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.
Completed
Last Updated: 16 Feb 2012 01:47 by ADMIN
FIX. Pressing Escape does not trigger the Click event of the form's CancelButton.
Completed
Last Updated: 10 Feb 2012 11:50 by ADMIN
FIX. RadRibbonForm - ApplicationButtonElement and QuickAccessToolBar are cut off when Aero if off and the form is maximized
Completed
Last Updated: 20 Jan 2012 11:27 by ADMIN
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.
Completed
Last Updated: 17 Nov 2011 06:33 by ADMIN
FIX. RadForm - setting the Visibility of the TitleBar to collapsed does not take effect until the form is resized.
Completed
Last Updated: 19 Jul 2011 03:57 by Svetlin
If you set the RadForm's title bar to string that contains the ampersand symbol (&), the symbol is replaced with underline symbol.
Completed
Last Updated: 02 Jun 2011 12:02 by ADMIN
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.