V
Visually Seen #
Hello everyone,
I'm manually creating my windows forms.
And that means going into Notepad, and writing the designer.cs and
class.cs and static void Main(), all by myself.
I only have the .NET Framework SDK and Redistrubutable.
To the point:
To set the size in a form, you write:
this.Size = new Size(500, 500);
How do you set the form's starting position to centre,
I'm pretty sure it's something like:
this.StartPosition = Window.StartPosition.Centre;
, but it doesn't compile.
Visually Seen Sharp
I'm manually creating my windows forms.
And that means going into Notepad, and writing the designer.cs and
class.cs and static void Main(), all by myself.
I only have the .NET Framework SDK and Redistrubutable.
To the point:
To set the size in a form, you write:
this.Size = new Size(500, 500);
How do you set the form's starting position to centre,
I'm pretty sure it's something like:
this.StartPosition = Window.StartPosition.Centre;
, but it doesn't compile.
Visually Seen Sharp