ComponentFactory.Krypton.Ribbon.PI.ShowWindow C# (CSharp) Method

ShowWindow() private method

private ShowWindow ( IntPtr hWnd, short cmdShow ) : int
hWnd IntPtr
cmdShow short
return int
        internal static extern int ShowWindow(IntPtr hWnd, short cmdShow);

Usage Example

コード例 #1
0
        private void OnRedrawTick(object sender, EventArgs e)
        {
            Timer redrawTimer = (Timer)sender;
            redrawTimer.Stop();
            redrawTimer.Dispose();

            // Show the window and so cause it to be redrawn
            if (!IsDisposed && (Handle != IntPtr.Zero))
            {
                PI.ShowWindow(Handle, (short)PI.SW_SHOWNOACTIVATE);
            }
        }
All Usage Examples Of ComponentFactory.Krypton.Ribbon.PI::ShowWindow