Update (2011-01-17):
I am creating a form with FormBorderStyle=None inside an MdiContainer.
When I show the first form, even if it has already been created, for a fraction of a second it appears with the blue border of a normal form, then it's reverted.
With the following sample, clicking once and again on button1, it will show this behavior from time to time, although it's for a very brief lapse of time, so i guess it will be hard to see in a very fast machine; however, in my production code with 3rd party .net controls, it's shown for a lot more time.
To try this, just create a new project, and a windows form called Form2, add a button to Form1, add the events Form1_Load and button1_Click, and paste the code. Then, click button1 for a while.
public partial class Form1 : Form
{
Form2 form;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
form.Visible = !form.Visible;
form.MdiParent = this;
}
private void Form1_Load(object sender, EventArgs e)
{
this.IsMdiContainer = true;
form = new Form2();
form.FormBorderStyle = FormBorderStyle.None;
}
}
This is language agnostic, so, please, don't change my tags without a good reason.
FormBorderStyleto "None" onFormLoginin the designer, and ran it on a blank Windows XP virtual machine. I still don't see a flash of the form's borders. I suspect the problem is with your computer's graphics card. Can you try another computer? – Cody Gray Jan 13 '11 at 4:34