Horje
c# form formborderstyle none move Code Example
c# form formborderstyle none move
protected override void WndProc(ref Message m)
{
    switch(m.Msg)
    {
        case 0x84:
            base.WndProc(ref m);
            if ((int)m.Result == 0x1)
                m.Result = (IntPtr)0x2;
            return;
    }

    base.WndProc(ref m);
}




Csharp

Related
C# program lambda Func Code Example C# program lambda Func Code Example
iterate through a gameobject in unity Code Example iterate through a gameobject in unity Code Example
c# list initialize Code Example c# list initialize Code Example
uninitialized array c# Code Example uninitialized array c# Code Example
set dirty a property unity custom inspector Code Example set dirty a property unity custom inspector Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8