一个样啊:
private const int SC_MINIMIZE = 61472;
private const int SC_MAXIMIZE = 61488;
protected override void WndProc(ref Message m)
{
switch ( m.WParam.ToInt32() )
{
case SC_MINIMIZE:
MessageBox.Show("最小化");
break;
case SC_MAXIMIZE:
MessageBox.Show("最大化");
break;
default:
break;
}
base.WndProc(ref m);
}