Advertisement
VerTical_Dev

Untitled

Nov 24th, 2017
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System;
  2. using System.Windows.Forms;
  3. using System.Drawing;
  4.  
  5.     namespace RTE
  6.     {
  7.         public class Cloud
  8.         {
  9.             public Cloud()
  10.             {
  11.                 var a = new Form()
  12.                 {
  13.                     BackColor = Color.Black,
  14.                     Size = new Size(300,300)
  15.                 };
  16.                 a.Show();
  17.             }
  18.         }
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement