Taskbar notification glow












3















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.










share|improve this question




















  • 5





    Do you mean this?

    – Nico Schertler
    Sep 24 '13 at 10:52
















3















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.










share|improve this question




















  • 5





    Do you mean this?

    – Nico Schertler
    Sep 24 '13 at 10:52














3












3








3


2






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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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














  • 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












3 Answers
3






active

oldest

votes


















5














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






share|improve this answer

































    2














    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.






    share|improve this answer


























    • 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



















    0














    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);
    }
    }
    }





    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      5














      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






      share|improve this answer






























        5














        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






        share|improve this answer




























          5












          5








          5







          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






          share|improve this answer















          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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Sep 16 '15 at 7:00

























          answered Sep 24 '13 at 11:03









          Menelaos VergisMenelaos Vergis

          1,8301624




          1,8301624

























              2














              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.






              share|improve this answer


























              • 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
















              2














              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.






              share|improve this answer


























              • 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














              2












              2








              2







              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.






              share|improve this answer















              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.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              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



















              • 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











              0














              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);
              }
              }
              }





              share|improve this answer




























                0














                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);
                }
                }
                }





                share|improve this answer


























                  0












                  0








                  0







                  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);
                  }
                  }
                  }





                  share|improve this answer













                  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);
                  }
                  }
                  }






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 20 '18 at 4:04









                  Jeff PeggJeff Pegg

                  1




                  1






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      Npm cannot find a required file even through it is in the searched directory

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith