SystemTrayMenu/NativeDllImport/ShowWindow.cs

12 lines
267 B
C#
Raw Normal View History

using System;
using System.Runtime.InteropServices;
namespace SystemTrayMenu.NativeDllImport
{
public static partial class NativeMethods
{
[DllImport("user32.dll")]
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
}
}