Using Windows Forms I wanted to position window into specific coords. I thought it can be done in a simple way, but following code does not work at all:
public Form1()
{
InitializeComponent();
this.Top = 0;
this.Left = 0;
}
However, when only get a handle to that window, it works well:
public Form1()
{
InitializeComponent();
IntPtr hwnd = this.Handle;
this.Top = 0;
this.Left = 0;
}
You can see that I am not working with that pointer at all. I found at MSDN following statement:
The value of the Handle property is a Windows HWND. If the handle has
not yet been created, referencing this property will force the handle
to be created.
Does it mean that we can set window position only AFTER the creation of its handle? Are setters Top/Left using this handle internally? Thank you for clarification.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…