一个Win32 API实例类(代码收集)
生活随笔
收集整理的這篇文章主要介紹了
一个Win32 API实例类(代码收集)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近看到別人代碼中一個很好的功能類,該類是一個Win32 API實例類,該類功能包括:同一程序禁止啟動多次;獲取任意窗體;恢復窗體狀態;設置窗體焦點等。
該類很實用,與大家分享一下:
?1?????///?Summary?description?for?ProcessUtils.
?2?????public?static?class?ProcessUtils
?3?????{
?4?????????private?static?Mutex?mutex?=?null;
?5?
?6?????????///?Determine?if?the?current?process?is?already?running
?7?????????public?static?bool?ThisProcessIsAlreadyRunning()
?8?????????{
?9?????????????//?Only?want?to?call?this?method?once,?at?startup.
10?????????????Debug.Assert(mutex?==?null);
11?
12?????????????//?createdNew?needs?to?be?false?in?.Net?2.0,?otherwise,?if?another?instance?of
13?????????????//?this?program?is?running,?the?Mutex?constructor?will?block,?and?then?throw?
14?????????????//?an?exception?if?the?other?instance?is?shut?down.
15?????????????bool?createdNew?=?false;
16?
17?????????????mutex?=?new?Mutex(false,?Application.ProductName,?out?createdNew);
18?
19?????????????Debug.Assert(mutex?!=?null);
20?
21?????????????return?!createdNew;
22?????????}
23?
24?????????[DllImport("user32.dll",?SetLastError?=?true)]
25?????????static?extern?IntPtr?FindWindow(string?lpClassName,?string?lpWindowName);
26?
27?????????[DllImport("user32.dll")]
28?????????[return:?MarshalAs(UnmanagedType.Bool)]
29?????????static?extern?bool?SetForegroundWindow(IntPtr?hWnd);
30?
31?????????[DllImport("user32.dll")]
32?????????static?extern?bool?IsIconic(IntPtr?hWnd);
33?
34?????????[DllImport("user32.dll")]
35?????????static?extern?bool?ShowWindow(IntPtr?hWnd,?int?nCmdShow);
36?
37?????????const?int?SW_RESTORE?=?9;
38?
39?????????[DllImport("user32.dll")]
40?????????static?extern?IntPtr?GetLastActivePopup(IntPtr?hWnd);
41?
42?????????[DllImport("user32.dll")]
43?????????static?extern?bool?IsWindowEnabled(IntPtr?hWnd);
44?
45?????????///?Set?focus?to?the?previous?instance?of?the?specified?program.
46?????????public?static?void?SetFocusToPreviousInstance(string?windowCaption)
47?????????{
48?????????????//?Look?for?previous?instance?of?this?program.
49?????????????IntPtr?hWnd?=?FindWindow(null,?windowCaption);
50?
51?????????????//?If?a?previous?instance?of?this?program?was?found...
52?????????????if?(hWnd?!=?null)
53?????????????{
54?????????????????//?Is?it?displaying?a?popup?window?
55?????????????????IntPtr?hPopupWnd?=?GetLastActivePopup(hWnd);
56?
57?????????????????//?If?so,?set?focus?to?the?popup?window.?Otherwise?set?focus
58?????????????????//?to?the?program's?main?window.
59?????????????????if?(hPopupWnd?!=?null?&&?IsWindowEnabled(hPopupWnd))
60?????????????????{
61?????????????????????hWnd?=?hPopupWnd;
62?????????????????}
63?
64?????????????????SetForegroundWindow(hWnd);
65?
66?????????????????//?If?program?is?minimized,?restore?it.
67?????????????????if?(IsIconic(hWnd))
68?????????????????{
69?????????????????????ShowWindow(hWnd,?SW_RESTORE);
70?????????????????}
71?????????????}
72?????????}
73?????}
?
?
總結
以上是生活随笔為你收集整理的一个Win32 API实例类(代码收集)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: NetSList
- 下一篇: CISCO路由器配置手册--第五章 虚拟