Ejemplo n.º 1
0
 static void Main()
 {
     using (window = new EditorWindow()) {
         window.Show();
         window.createFrame();
         // While the form is still valid, render and process messages.
         while (window.Created) {
             window.Render();
             Application.DoEvents();
         }
     }
 }
Ejemplo n.º 2
0
 static void Main()
 {
     using (window = new EditorWindow()) {
         window.Show();
         window.createFrame();
         // While the form is still valid, render and process messages.
         while (window.Created)
         {
             window.Render();
             Application.DoEvents();
         }
     }
 }
Ejemplo n.º 3
0
        private static void Init()
        {
            EditorWindow window = GetWindow(typeof(PianoBuilderWindow));

            window.Show();
        }