自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

WCF附加屬性技巧掌握

開發(fā) 開發(fā)工具
WCF附加屬性的學習需要我們在實際開發(fā)中去不斷的深入研究,這篇文章介紹的內(nèi)容只是其中一個簡單的開發(fā)實例,方便大家理解。

WCF作為一種比較新的技術(shù)工具,其中有許多東西值得我們?nèi)ド钊雽W習。比如WCF附加屬性。我們在這里就為大家介紹一下WCF附加屬性實現(xiàn)單實例的方法。#t#

WCF附加屬性代碼如下:

 

  1. class SingletonWindow  
  2. {  
  3. //注冊附加屬性  
  4. public static readonly DependencyProperty
     
    IsEnabledProperty =  
  5. DependencyProperty.RegisterAttached
    ("IsEnabled", typeof(bool), typeof
    (SingletonWindow), new Framework
    PropertyMetadata(OnIsEnabledChanged));  
  6. public static void SetIsEnabled
    (DependencyObject element, Boolean value)  
  7. {  
  8. element.SetValue(IsEnabledProperty, value);  
  9. }  
  10. public static Boolean GetIsEnabled
    (DependencyObject element)  
  11. {  
  12. return (Boolean)element.GetValue
    (IsEnabledProperty);  
  13. }  
  14. //根據(jù)附加屬性的返回值使能單實例模式  
  15. public static void OnIsEnabledChanged
    (DependencyObject obj, Dependency
    PropertyChangedEventArgs args)  
  16. {  
  17. if ((bool)args.NewValue != true)  
  18. {  
  19. return;  
  20. }  
  21. Process();  
  22. return;  
  23. }  
  24. public static void Process()
     //如果不適用附加屬性也可以直接使用此函數(shù)  
  25. {  
  26. //判斷單實例的方式有很多,如mutex,process,
    文件鎖等,這里用的是process方式  
  27. var process = GetRunningInstance();  
  28. if (process != null)  
  29. {  
  30. HandleRunningInstance(process);  
  31. Environment.Exit(0);  
  32. }  
  33. }  
  34. const int WS_SHOWNORMAL = 1;  
  35. [System.Runtime.InteropServices.
    DllImport("User32.dll")]  
  36. static extern bool ShowWindowAsync
    (IntPtr hWnd, int cmdShow);  
  37. [System.Runtime.InteropServices.
    DllImport("User32.dll")]  
  38. static extern bool SetForeground
    Window(IntPtr hWnd);  
  39. [System.Runtime.InteropServices.
    DllImport("user32.dll")]  
  40. static extern bool FlashWindow
    (IntPtr hWnd,bool bInvert);   
  41. static System.Diagnostics.Process 
    GetRunningInstance()  
  42. {  
  43. var current = System.Diagnostics.
    Process.GetCurrentProcess();  
  44. var processes = System.Diagnostics
    .Process.GetProcessesByName(current.
    ProcessName);  
  45. foreach (var process in processes)  
  46. {  
  47. if (process.Id != current.Id)  
  48. if (System.Reflection.Assembly.
    GetExecutingAssembly().Location.
    Replace("/", "\\") == current.
    MainModule.FileName)  
  49. return process;  
  50. }  
  51. return null;  
  52. }  
  53. static void HandleRunningInstance
    (System.Diagnostics.Process instance)  
  54. {  
  55. if (instance.MainWindowHandle!=IntPtr.Zero)  
  56. {  
  57. for (int i = 0; i < 2; i++)  
  58. {  
  59. FlashWindow(instance.MainWindowHandle, 500);  
  60. }  
  61. SetForegroundWindow(instance.
    MainWindowHandle);  
  62. ShowWindowAsync(instance.
    MainWindowHandle, WS_SHOWNORMAL);  
  63. }  
  64. else  
  65. {  
  66. //else 處理有點麻煩,簡化如下  
  67. MessageBox.Show("已經(jīng)有一個實例在運行,
    無法啟動第二個實例");  
  68. }  
  69. }  
  70. static void FlashWindow(IntPtr hanlde, int interval)  
  71. {  
  72. FlashWindow(hanlde, true);  
  73. System.Threading.Thread.Sleep(interval);  
  74. FlashWindow(hanlde, false);  
  75. System.Threading.Thread.Sleep(interval);  
  76. }  
  77. }  

 

WCF附加屬性代碼其實很簡單,前半部分是注冊依賴屬性,然后根據(jù)依賴屬性判斷是否啟用單實例模式;后半部分就是一個傳統(tǒng)的單實例模式的功能了。也就不介紹了。

使用這段WCF附加屬性代碼也很簡單:

Xaml方式:在主窗口的xaml文件中加入附加屬性即可

 

  1. < Window xmlns:src=
    "clr-namespace:WpfApplication1" 
    src:SingletonWindow.IsEnabled="true">  

傳統(tǒng)方式:直接使用代碼中后半部分,和winform下沒什么區(qū)別。在主窗口的構(gòu)造函數(shù)里面加入這句話。
SingletonWindow.Process();

責任編輯:曹凱 來源: 博客園
相關(guān)推薦

2009-12-11 14:21:57

PHP獲取字段屬性

2009-12-18 15:19:50

2022-11-01 15:57:44

2009-12-21 14:10:26

WCF異步調(diào)用

2009-12-14 18:10:21

Shell特性技巧

2009-12-21 15:53:56

WCF獲取客戶端IP

2009-11-09 15:06:34

WCF序列化

2010-03-30 09:04:26

Silverlight依賴屬性附加屬性

2010-02-24 12:49:39

WCF枚舉

2009-12-07 17:13:23

WCF技術(shù)

2013-08-02 13:25:00

2010-02-22 11:25:50

WCF DateSet

2010-02-23 09:44:12

WCF dataCon

2009-11-06 11:07:52

WCF事務(wù)屬性

2009-11-09 15:28:04

WCF知識結(jié)構(gòu)

2009-12-29 10:22:34

WPF附加屬性

2010-02-22 17:58:06

WCF異步上傳

2010-03-01 13:06:49

WCF繼承

2009-12-07 16:33:55

WCF 緩存

2010-02-22 16:19:25

WCF自托管
點贊
收藏

51CTO技術(shù)棧公眾號