8 lines
180 B
C#
8 lines
180 B
C#
|
namespace DualScreenDemo
|
||
|
{
|
||
|
public static class WindowStyles
|
||
|
{
|
||
|
public const int WS_CHILD = 0x40000000;
|
||
|
public const int WS_CLIPSIBLINGS = 0x04000000;
|
||
|
}
|
||
|
}
|