示例#1
0
        public static void Run()
        {
            var staticWindow = new StaticWindow();

            staticWindow.Close();

            var popupWindow = new PopupWindow();

            popupWindow.Close();
        }
示例#2
0
 public void Create()
 {
     Window w = new StaticWindow();
     Assert.NotNull(w);
 }
        static void DemoMethod()
        {
            StaticWindow window = (StaticWindow)EditorWindow.GetWindow(typeof(StaticWindow));

            window.Show();
        }