WCF附加属性技巧掌握

WCF作为一种比较新的技术工具,其中有许多东西值得我们去深入学习。比如WCF附加属性。我们在这里就为大家介绍一下WCF附加属性实现单实例的方法。#t#

创新互联-专业网站定制、快速模板网站建设、高性价比渝北网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式渝北网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖渝北地区。费用合理售后完善,十多年实体公司更值得信赖。

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. //根据附加属性的返回值使能单实例模式
  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()
     //如果不适用附加属性也可以直接使用此函数
  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("已经有一个实例在运行,
    无法启动第二个实例");
  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. }

WCF附加属性代码其实很简单,前半部分是注册依赖属性,然后根据依赖属性判断是否启用单实例模式;后半部分就是一个传统的单实例模式的功能了。也就不介绍了。

使用这段WCF附加属性代码也很简单:

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

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

传统方式:直接使用代码中后半部分,和winform下没什么区别。在主窗口的构造函数里面加入这句话。
SingletonWindow.Process();

分享文章:WCF附加属性技巧掌握
标题链接:http://www.shufengxianlan.com/qtweb/news0/234500.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联