Discussion:
How to customize the form
(too old to reply)
Saravanan
2007-02-23 07:16:16 UTC
Permalink
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
Bryan Phillips
2007-03-14 19:11:03 UTC
Permalink
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
Post by Saravanan
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
Loading...