Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
WindowWrapper.cs
Go to the documentation of this file.
1using System;
2using System.Windows.Forms;
3
4namespace SFB;
5
6public class WindowWrapper : IWin32Window
7{
8 private IntPtr _hwnd;
9
10 public IntPtr Handle => _hwnd;
11
12 public WindowWrapper(IntPtr handle)
13 {
14 _hwnd = handle;
15 }
16}
WindowWrapper(IntPtr handle)