码迷,mamicode.com
首页 > 其他好文 > 详细

wpf 窗口最小化后,触发某事件弹出最小化窗口并置顶

时间:2014-09-29 13:19:40      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   for   div   on   c   log   r   new   

//如果窗口最小化了弹出并置顶----事件触发调用
                    ShowWindowAsync(new System.Windows.Interop.WindowInteropHelper(CommonHelper.view).Handle, 1);
                    SetForegroundWindow(new System.Windows.Interop.WindowInteropHelper(CommonHelper.view).Handle);

  

[System.Runtime.InteropServices.DllImport("User32.dll")]
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
        [System.Runtime.InteropServices.DllImport("user32.dll")]
        private static extern int SetForegroundWindow(IntPtr hWnd);

  

wpf 窗口最小化后,触发某事件弹出最小化窗口并置顶

标签:blog   ar   for   div   on   c   log   r   new   

原文地址:http://www.cnblogs.com/yhdkzy/p/3999735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!