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