all groups > dotnet windows forms designtime > february 2007 >
You're in the

dotnet windows forms designtime

group:

How to customize the form


How to customize the form Saravanan
2/22/2007 11:16:16 PM
dotnet windows forms designtime:
Hi,

I am creating windows form at the run time and also i am setting the
FormBorderStyle to FixedSingle. So that the form comes with some standard
size, but i wanted to customize the form size.. How can i customize the form
size with FormBorderStyle property as FixedSingle.. Even when i tried with
setting form size to some less value but still it is coming with the standard
size,, Could you please help me out in this

Regards
Re: How to customize the form Bryan Phillips
3/14/2007 7:11:03 PM
I was able to resize a FixedSingle form using the following code:

public static void Main()
{
Application.Run(new Form1());
}

public class Form1 : Form
{
public Form1(){
this.FormBorderStyle = FormBorderStyle.FixedSingle;
this.Load += new EventHandler(Form1_Load);
}

public void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Size is :" + this.Size);
this.Height -= 50;
this.Width -= 100;
MessageBox.Show("Size is :" + this.Size);
}
}

--
Bryan Phillips
MCSD, MCDBA, MCSE
Blog: http://bphillips76.spaces.live.com



[quoted text, click to view]
AddThis Social Bookmark Button