gpt4 book ai didi

.net - 如何使WPF窗口在任务栏上闪烁?

转载 作者:行者123 更新时间:2023-12-03 09:53:13 25 4
gpt4 key购买 nike

给定的时刻,我的WPF应用需要用户注意。我知道可以使Windows 7任务栏图标以黄色闪烁。

到目前为止,我尝试过:

  • Window.Activate尝试将窗口置于前台并激活它。
  • Window.Focus尝试将焦点设置为此元素。

  • 有什么建议?

    最佳答案

    这是一种可能的解决方案:http://www.jarloo.com/flashing-a-wpf-window/

    在代码示例中,为Window类创建了两个扩展方法:FlashWindow和StopFlashingWindow:

    private const UInt32 FLASHW_STOP = 0; //Stop flashing. The system restores the window to its original state.        private const UInt32 FLASHW_CAPTION = 1; //Flash the window caption.        
    private const UInt32 FLASHW_TRAY = 2; //Flash the taskbar button.
    private const UInt32 FLASHW_ALL = 3; //Flash both the window caption and taskbar button.
    private const UInt32 FLASHW_TIMER = 4; //Flash continuously, until the FLASHW_STOP flag is set.
    private const UInt32 FLASHW_TIMERNOFG = 12; //Flash continuously until the window comes to the foreground.


    [StructLayout(LayoutKind.Sequential)]
    private struct FLASHWINFO
    {
    public UInt32 cbSize; //The size of the structure in bytes.
    public IntPtr hwnd; //A Handle to the Window to be Flashed. The window can be either opened or minimized.


    public UInt32 dwFlags; //The Flash Status.
    public UInt32 uCount; // number of times to flash the window
    public UInt32 dwTimeout; //The rate at which the Window is to be flashed, in milliseconds. If Zero, the function uses the default cursor blink rate.
    }

    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);



    public static void FlashWindow(this Window win, UInt32 count = UInt32.MaxValue)
    {
    //Don't flash if the window is active
    if (win.IsActive) return;
    WindowInteropHelper h = new WindowInteropHelper(win);
    FLASHWINFO info = new FLASHWINFO
    {
    hwnd = h.Handle,
    dwFlags = FLASHW_ALL | FLASHW_TIMER,
    uCount = count,
    dwTimeout = 0
    };

    info.cbSize = Convert.ToUInt32(Marshal.SizeOf(info));
    FlashWindowEx(ref info);
    }

    public static void StopFlashingWindow(this Window win)
    {
    WindowInteropHelper h = new WindowInteropHelper(win);
    FLASHWINFO info = new FLASHWINFO();
    info.hwnd = h.Handle;
    info.cbSize = Convert.ToUInt32(Marshal.SizeOf(info));
    info.dwFlags = FLASHW_STOP;
    info.uCount = UInt32.MaxValue;
    info.dwTimeout = 0;
    FlashWindowEx(ref info);
    }

    访问 http://www.jarloo.com/flashing-a-wpf-window/获取完整的源代码。

    非常有趣的场景。我本以为那会很简单。如果我不得不做类似的事情,我将为这个问题添加书签:)

    关于.net - 如何使WPF窗口在任务栏上闪烁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5118226/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com