Advertisement
retesere20

Untitled

Aug 26th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var x = new System.Threading.Thread(delegate ()
  2. {
  3. form.ShowDialog();
  4. //System.Windows.Forms.Application.Run(form);
  5. });
  6. x.SetApartmentState(ApartmentState.STA);
  7. x.Start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement