This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void WndProc(ref Message message) | |
{ | |
const int WM_SYSCOMMAND = 0x0112; | |
const int SC_MOVE = 0xF010; | |
const int SC_MAXIMIZE = 0xF030; | |
const int SC_MINIMIZE = 0xF020; | |
const int SC_RESTORE = 0xF120; | |
switch (message.Msg) | |
{ |
NewerOlder