lanzhiquan

Results 3 comments of lanzhiquan

My Example: ```csharp public class Windows11Snap : Window { public Windows11Snap() { WindowStyle = System.Windows.WindowStyle.None; _btnMax = new Button { Content = "MaxButton", Width = 100, Height = 100, Margin...

```csharp public static class InteropMethods { [DllImport("user32.dll", CharSet = CharSet.Auto)] internal static extern IntPtr GetDC(IntPtr ptr); [DllImport("gdi32.dll", SetLastError = true, ExactSpelling = true, CharSet = CharSet.Auto)] internal static extern int...

```csharp System.Windows.Point is (double X, double Y) System.Drawing.Point is (int X, int Y) ```