Form_load
イベントで WinForm のサイズを変更したい。私はその行を書きました
this.Height -= 100;
イベントでForm_load
は動作しませんが、どうすればこれを達成できますか?
private void FormMain_Load(object sender, EventArgs e)
{
try
{
//somecode
if (m_HideControls)
{
// do some controls visible to false
this.Height -= 100;
}
}
catch (Exception ex)
{
}
}