-, ... ".designer.cs"... . Microsoft. WinForms , "",
MyForm.cs (place for YOUR code)
MyForm.designer.cs (Microsoft sandbox area for designer stuff)
MyForm.resx (Resource file -- if used, specific to this form).
, WinForm "" " ", MyForm.cs.
PARTIAL PUBLIC CLASS MyForm : Window
{
public MyForm()
{
InitializeComponent();
}
}
"MyForm.Designer.cs" "MyForm.cs" . Microsoft. , , . - , , - , . ( ).
public MyForm()
{
DoYourStuff();
InitializeComponent();
}
private void DoYourStuff()
{ put it here }
- , . , LOADED ( , ). - :
public MyForm()
{
Load += MyAfterInitializeComponents;
InitializeComponent();
}
private void MyAfterInitializeComponents(object sender, EventArgs e)
{
DoYourStuff();
}
- , , , , .