Taskbar notification glow
I have a TCP Chat application. When a new message arrives, I want to make the taskbar glow until the user opens the form again (in case it wasn't focus/activated).
An example of what I mean:
http://puu.sh/4z01n.png
How can I make it glow like that?
Thanks!
If you still don't understand what I mean.. The image I provided is what appears ON the icon i nthe taskbar when something "glows". Meaning there is a notifcation. That's what I want to acheive.
c# winforms
add a comment |
I have a TCP Chat application. When a new message arrives, I want to make the taskbar glow until the user opens the form again (in case it wasn't focus/activated).
An example of what I mean:
http://puu.sh/4z01n.png
How can I make it glow like that?
Thanks!
If you still don't understand what I mean.. The image I provided is what appears ON the icon i nthe taskbar when something "glows". Meaning there is a notifcation. That's what I want to acheive.
c# winforms
5
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52
add a comment |
I have a TCP Chat application. When a new message arrives, I want to make the taskbar glow until the user opens the form again (in case it wasn't focus/activated).
An example of what I mean:
http://puu.sh/4z01n.png
How can I make it glow like that?
Thanks!
If you still don't understand what I mean.. The image I provided is what appears ON the icon i nthe taskbar when something "glows". Meaning there is a notifcation. That's what I want to acheive.
c# winforms
I have a TCP Chat application. When a new message arrives, I want to make the taskbar glow until the user opens the form again (in case it wasn't focus/activated).
An example of what I mean:
http://puu.sh/4z01n.png
How can I make it glow like that?
Thanks!
If you still don't understand what I mean.. The image I provided is what appears ON the icon i nthe taskbar when something "glows". Meaning there is a notifcation. That's what I want to acheive.
c# winforms
c# winforms
edited Sep 24 '13 at 11:06
Uwe Keim
27.4k31129210
27.4k31129210
asked Sep 24 '13 at 10:48
user2810715user2810715
142
142
5
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52
add a comment |
5
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52
5
5
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52
add a comment |
3 Answers
3
active
oldest
votes
I hope this will help you
[DllImport("User32.dll")]
[return:MarshalAs(UnmanagedType.Bool)]
static extern bool FlashWindowEx(ref FLASHINFO pwfi);
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO {
public UInt32 cbSize;
public IntPtr hwnd;
public UInt32 dwFlags;
public UInt32 uCount;
public UInt32 dwTimeout;
}
[Flags]
public enum FlashMode {
///
/// Stop flashing. The system restores the window to its original state.
///
FLASHW_STOP = 0,
///
/// Flash the window caption.
///
FLASHW_CAPTION = 1,
///
/// Flash the taskbar button.
///
FLASHW_TRAY = 2,
///
/// Flash both the window caption and taskbar button.
/// This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags.
///
FLASHW_ALL = 3,
///
/// Flash continuously, until the FLASHW_STOP flag is set.
///
FLASHW_TIMER = 4,
///
/// Flash continuously until the window comes to the foreground.
///
FLASHW_TIMERNOFG = 12
}
public static bool FlashWindow(IntPtr hWnd, FlashMode fm) {
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = (UInt32)fm;
fInfo.uCount = UInt32.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
Taken from my wiki at Flashing Taskbar
add a comment |
You need some interoperability to achieve this,first of all add System.Runtime.InteropServices
namespace to your class,the in you class define this function at the beginning,
[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool FlashStatus);
It is an API function and it's description says, The FlashWindow function flashes the specified window once..Then add a Timer
to your class(drag-drop it from the toolbox,set its interval to 500 Milliseconds).Then assuming Form1
is the window you want to flash,use the following code to achieve this;
private void Form1_Activated(object sender, EventArgs e)
{
timer1.Stop();//Stop the timer to stop flashing.
}
private void Form1_Deactivate(object sender, EventArgs e)
{
timer1.Start();//Start timer if window loses focus.
}
private void timer1_Tick(object sender, EventArgs e)
{
FlashWindow(this.Handle, true);//Flash the window untill it gets focused.
}
Well,call timer1.Start();
when a new message arrives.A sample just in case if you need.
Hope this helps you.
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
add a comment |
You can use an extension method that will Flash the window until it receives focus, without using a timer.
Just call
form.FlashNotification();
public static class ExtensionMethods
{
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
private const uint FLASHW_ALL = 3;
private const uint FLASHW_TIMERNOFG = 12;
[StructLayout(LayoutKind.Sequential)]
private struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}
public static bool FlashNotification(this Form form)
{
IntPtr hWnd = form.Handle;
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = FLASHW_ALL | FLASHW_TIMERNOFG;
fInfo.uCount = uint.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
}
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f18979534%2ftaskbar-notification-glow%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I hope this will help you
[DllImport("User32.dll")]
[return:MarshalAs(UnmanagedType.Bool)]
static extern bool FlashWindowEx(ref FLASHINFO pwfi);
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO {
public UInt32 cbSize;
public IntPtr hwnd;
public UInt32 dwFlags;
public UInt32 uCount;
public UInt32 dwTimeout;
}
[Flags]
public enum FlashMode {
///
/// Stop flashing. The system restores the window to its original state.
///
FLASHW_STOP = 0,
///
/// Flash the window caption.
///
FLASHW_CAPTION = 1,
///
/// Flash the taskbar button.
///
FLASHW_TRAY = 2,
///
/// Flash both the window caption and taskbar button.
/// This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags.
///
FLASHW_ALL = 3,
///
/// Flash continuously, until the FLASHW_STOP flag is set.
///
FLASHW_TIMER = 4,
///
/// Flash continuously until the window comes to the foreground.
///
FLASHW_TIMERNOFG = 12
}
public static bool FlashWindow(IntPtr hWnd, FlashMode fm) {
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = (UInt32)fm;
fInfo.uCount = UInt32.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
Taken from my wiki at Flashing Taskbar
add a comment |
I hope this will help you
[DllImport("User32.dll")]
[return:MarshalAs(UnmanagedType.Bool)]
static extern bool FlashWindowEx(ref FLASHINFO pwfi);
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO {
public UInt32 cbSize;
public IntPtr hwnd;
public UInt32 dwFlags;
public UInt32 uCount;
public UInt32 dwTimeout;
}
[Flags]
public enum FlashMode {
///
/// Stop flashing. The system restores the window to its original state.
///
FLASHW_STOP = 0,
///
/// Flash the window caption.
///
FLASHW_CAPTION = 1,
///
/// Flash the taskbar button.
///
FLASHW_TRAY = 2,
///
/// Flash both the window caption and taskbar button.
/// This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags.
///
FLASHW_ALL = 3,
///
/// Flash continuously, until the FLASHW_STOP flag is set.
///
FLASHW_TIMER = 4,
///
/// Flash continuously until the window comes to the foreground.
///
FLASHW_TIMERNOFG = 12
}
public static bool FlashWindow(IntPtr hWnd, FlashMode fm) {
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = (UInt32)fm;
fInfo.uCount = UInt32.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
Taken from my wiki at Flashing Taskbar
add a comment |
I hope this will help you
[DllImport("User32.dll")]
[return:MarshalAs(UnmanagedType.Bool)]
static extern bool FlashWindowEx(ref FLASHINFO pwfi);
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO {
public UInt32 cbSize;
public IntPtr hwnd;
public UInt32 dwFlags;
public UInt32 uCount;
public UInt32 dwTimeout;
}
[Flags]
public enum FlashMode {
///
/// Stop flashing. The system restores the window to its original state.
///
FLASHW_STOP = 0,
///
/// Flash the window caption.
///
FLASHW_CAPTION = 1,
///
/// Flash the taskbar button.
///
FLASHW_TRAY = 2,
///
/// Flash both the window caption and taskbar button.
/// This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags.
///
FLASHW_ALL = 3,
///
/// Flash continuously, until the FLASHW_STOP flag is set.
///
FLASHW_TIMER = 4,
///
/// Flash continuously until the window comes to the foreground.
///
FLASHW_TIMERNOFG = 12
}
public static bool FlashWindow(IntPtr hWnd, FlashMode fm) {
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = (UInt32)fm;
fInfo.uCount = UInt32.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
Taken from my wiki at Flashing Taskbar
I hope this will help you
[DllImport("User32.dll")]
[return:MarshalAs(UnmanagedType.Bool)]
static extern bool FlashWindowEx(ref FLASHINFO pwfi);
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO {
public UInt32 cbSize;
public IntPtr hwnd;
public UInt32 dwFlags;
public UInt32 uCount;
public UInt32 dwTimeout;
}
[Flags]
public enum FlashMode {
///
/// Stop flashing. The system restores the window to its original state.
///
FLASHW_STOP = 0,
///
/// Flash the window caption.
///
FLASHW_CAPTION = 1,
///
/// Flash the taskbar button.
///
FLASHW_TRAY = 2,
///
/// Flash both the window caption and taskbar button.
/// This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags.
///
FLASHW_ALL = 3,
///
/// Flash continuously, until the FLASHW_STOP flag is set.
///
FLASHW_TIMER = 4,
///
/// Flash continuously until the window comes to the foreground.
///
FLASHW_TIMERNOFG = 12
}
public static bool FlashWindow(IntPtr hWnd, FlashMode fm) {
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = (UInt32)fm;
fInfo.uCount = UInt32.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
Taken from my wiki at Flashing Taskbar
edited Sep 16 '15 at 7:00
answered Sep 24 '13 at 11:03


Menelaos VergisMenelaos Vergis
1,8301624
1,8301624
add a comment |
add a comment |
You need some interoperability to achieve this,first of all add System.Runtime.InteropServices
namespace to your class,the in you class define this function at the beginning,
[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool FlashStatus);
It is an API function and it's description says, The FlashWindow function flashes the specified window once..Then add a Timer
to your class(drag-drop it from the toolbox,set its interval to 500 Milliseconds).Then assuming Form1
is the window you want to flash,use the following code to achieve this;
private void Form1_Activated(object sender, EventArgs e)
{
timer1.Stop();//Stop the timer to stop flashing.
}
private void Form1_Deactivate(object sender, EventArgs e)
{
timer1.Start();//Start timer if window loses focus.
}
private void timer1_Tick(object sender, EventArgs e)
{
FlashWindow(this.Handle, true);//Flash the window untill it gets focused.
}
Well,call timer1.Start();
when a new message arrives.A sample just in case if you need.
Hope this helps you.
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
add a comment |
You need some interoperability to achieve this,first of all add System.Runtime.InteropServices
namespace to your class,the in you class define this function at the beginning,
[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool FlashStatus);
It is an API function and it's description says, The FlashWindow function flashes the specified window once..Then add a Timer
to your class(drag-drop it from the toolbox,set its interval to 500 Milliseconds).Then assuming Form1
is the window you want to flash,use the following code to achieve this;
private void Form1_Activated(object sender, EventArgs e)
{
timer1.Stop();//Stop the timer to stop flashing.
}
private void Form1_Deactivate(object sender, EventArgs e)
{
timer1.Start();//Start timer if window loses focus.
}
private void timer1_Tick(object sender, EventArgs e)
{
FlashWindow(this.Handle, true);//Flash the window untill it gets focused.
}
Well,call timer1.Start();
when a new message arrives.A sample just in case if you need.
Hope this helps you.
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
add a comment |
You need some interoperability to achieve this,first of all add System.Runtime.InteropServices
namespace to your class,the in you class define this function at the beginning,
[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool FlashStatus);
It is an API function and it's description says, The FlashWindow function flashes the specified window once..Then add a Timer
to your class(drag-drop it from the toolbox,set its interval to 500 Milliseconds).Then assuming Form1
is the window you want to flash,use the following code to achieve this;
private void Form1_Activated(object sender, EventArgs e)
{
timer1.Stop();//Stop the timer to stop flashing.
}
private void Form1_Deactivate(object sender, EventArgs e)
{
timer1.Start();//Start timer if window loses focus.
}
private void timer1_Tick(object sender, EventArgs e)
{
FlashWindow(this.Handle, true);//Flash the window untill it gets focused.
}
Well,call timer1.Start();
when a new message arrives.A sample just in case if you need.
Hope this helps you.
You need some interoperability to achieve this,first of all add System.Runtime.InteropServices
namespace to your class,the in you class define this function at the beginning,
[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool FlashStatus);
It is an API function and it's description says, The FlashWindow function flashes the specified window once..Then add a Timer
to your class(drag-drop it from the toolbox,set its interval to 500 Milliseconds).Then assuming Form1
is the window you want to flash,use the following code to achieve this;
private void Form1_Activated(object sender, EventArgs e)
{
timer1.Stop();//Stop the timer to stop flashing.
}
private void Form1_Deactivate(object sender, EventArgs e)
{
timer1.Start();//Start timer if window loses focus.
}
private void timer1_Tick(object sender, EventArgs e)
{
FlashWindow(this.Handle, true);//Flash the window untill it gets focused.
}
Well,call timer1.Start();
when a new message arrives.A sample just in case if you need.
Hope this helps you.
edited Sep 24 '13 at 11:41
answered Sep 24 '13 at 11:04


BlackKnightBlackKnight
925822
925822
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
add a comment |
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
For some reason, it's still flashing evne though I am focusing the window. Do I have to set the Focused proeprty or something?..
– user2810715
Sep 24 '13 at 11:31
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
@user2810715 I've updated the code,see if it works now.
– BlackKnight
Sep 24 '13 at 11:46
add a comment |
You can use an extension method that will Flash the window until it receives focus, without using a timer.
Just call
form.FlashNotification();
public static class ExtensionMethods
{
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
private const uint FLASHW_ALL = 3;
private const uint FLASHW_TIMERNOFG = 12;
[StructLayout(LayoutKind.Sequential)]
private struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}
public static bool FlashNotification(this Form form)
{
IntPtr hWnd = form.Handle;
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = FLASHW_ALL | FLASHW_TIMERNOFG;
fInfo.uCount = uint.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
}
}
add a comment |
You can use an extension method that will Flash the window until it receives focus, without using a timer.
Just call
form.FlashNotification();
public static class ExtensionMethods
{
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
private const uint FLASHW_ALL = 3;
private const uint FLASHW_TIMERNOFG = 12;
[StructLayout(LayoutKind.Sequential)]
private struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}
public static bool FlashNotification(this Form form)
{
IntPtr hWnd = form.Handle;
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = FLASHW_ALL | FLASHW_TIMERNOFG;
fInfo.uCount = uint.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
}
}
add a comment |
You can use an extension method that will Flash the window until it receives focus, without using a timer.
Just call
form.FlashNotification();
public static class ExtensionMethods
{
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
private const uint FLASHW_ALL = 3;
private const uint FLASHW_TIMERNOFG = 12;
[StructLayout(LayoutKind.Sequential)]
private struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}
public static bool FlashNotification(this Form form)
{
IntPtr hWnd = form.Handle;
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = FLASHW_ALL | FLASHW_TIMERNOFG;
fInfo.uCount = uint.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
}
}
You can use an extension method that will Flash the window until it receives focus, without using a timer.
Just call
form.FlashNotification();
public static class ExtensionMethods
{
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
private const uint FLASHW_ALL = 3;
private const uint FLASHW_TIMERNOFG = 12;
[StructLayout(LayoutKind.Sequential)]
private struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}
public static bool FlashNotification(this Form form)
{
IntPtr hWnd = form.Handle;
FLASHWINFO fInfo = new FLASHWINFO();
fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo));
fInfo.hwnd = hWnd;
fInfo.dwFlags = FLASHW_ALL | FLASHW_TIMERNOFG;
fInfo.uCount = uint.MaxValue;
fInfo.dwTimeout = 0;
return FlashWindowEx(ref fInfo);
}
}
}
answered Nov 20 '18 at 4:04
Jeff PeggJeff Pegg
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f18979534%2ftaskbar-notification-glow%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
5
Do you mean this?
– Nico Schertler
Sep 24 '13 at 10:52