Completed
Last Updated: 09 Oct 2014 12:57 by ADMIN
ADMIN
George
Created on: 12 Sep 2014 08:21
Category: Form
Type: Bug Report
0
FIX. RadForm - Setting the FormBorderStyle property to FixedToolWindow does not hide the Icon
To reproduce:

Create a RadForm and set the property as follows:

public Form1()
{
    InitializeComponent();
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
}

Workaround:

Set the ShowIcon property to false:

public Form1()
{
    InitializeComponent();
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
    this.ShowIcon = false;
}

0 comments