C# 작업표시줄 깜빡이게 하기 - FlashWindowEx
C# 작업표시줄 깜빡이게 하기 - FlashWindowEx 윈도우 창에서 작업표시줄에있는 아이콘을 깜짝이게 하는 방법입니다. 아래 코드는 응용프로그램을 최소화시킨 경우 작업표시줄에서 깜빡이도록 합니다. using System.Runtime.InteropServices; namespace WinFormsApp1 { public partial class Form1 : Form { public const int FLASHW_STOP = 0; public const int FLASHW_ALL = 3; [StructLayout(LayoutKind.Sequential)] public struct FLASHWINFO { public int cbSize; public IntPtr hwnd; public int dwFl..