Ejemplo n.º 1
0
 private void Flash(IntPtr hwnd, FlashMode fm, int times)
 {
     unsafe
     {
         FlashInfo FI = new FlashInfo();
         FI.cd_size    = sizeof(FlashInfo);
         FI.dw_flags   = (int)fm;
         FI.dw_timeout = 0;
         FI.hwnd       = hwnd;
         FI.u_count    = times;
         FlashWindowEx(ref FI);
     }
 }
Ejemplo n.º 2
0
 private static extern int FlashWindowEx(ref FlashInfo fi);