Advertisement
Guest User

Untitled

a guest
Feb 18th, 2014
2,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1.                 new Thread(() =>
  2.                 {
  3.                     try
  4.                     {
  5.                         while (true)
  6.                         {
  7.                             this.TopMost = true;
  8.                             Thread.Sleep(1);
  9.                         }
  10.                     }
  11.                     catch (Exception ex) { }
  12.                 }).Start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement