SharpSoundDevice.DeviceUtilities.DockWinFormsPanel C# (CSharp) Method

DockWinFormsPanel() public static method

Docks a Winforms panel inside the parent window.
public static DockWinFormsPanel ( System panel, IntPtr vstWindow ) : void
panel System
vstWindow System.IntPtr
return void
        public static void DockWinFormsPanel(System.Windows.Forms.Control panel, IntPtr vstWindow)
        {
            System.Windows.Forms.Application.EnableVisualStyles();

            panel.Top = 0;
            panel.Left = 0;

            SetParent(panel.Handle, vstWindow);
        }