// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace SystemTrayMenu.UserInterface.FolderBrowseDialog { using System; public class WindowWrapper : System.Windows.Forms.IWin32Window { private readonly IntPtr hwnd; /// /// Initializes a new instance of the class. /// /// Handle to wrap. public WindowWrapper(IntPtr handle) { hwnd = handle; } /// /// Gets original ptr. /// public IntPtr Handle => hwnd; } }