void DrawTopButtons()
 {
     QUI.BeginHorizontal(WIDTH_420);
     {
         if (QUI.Button("UIButtons Database"))
         {
             ControlPanelWindow.Open(ControlPanelWindow.Section.UIButtons);
         }
         if (QUI.Button("Refresh Data"))
         {
             RefreshData(true);
         }
     }
     QUI.EndHorizontal();
     QUI.Space(SPACE_2);
 }
예제 #2
0
 void DrawTopButtons()
 {
     QUI.BeginHorizontal(WIDTH_420);
     {
         if (QUI.Button("Control Panel"))
         {
             ControlPanelWindow.Open(ControlPanelWindow.Section.ControlPanel);
         }
         if (QUI.Button("Editor Settings"))
         {
             ControlPanelWindow.Open(ControlPanelWindow.Section.Settings);
         }
         if (QUI.Button("Help"))
         {
             ControlPanelWindow.Open(ControlPanelWindow.Section.Help);
         }
     }
     QUI.EndHorizontal();
     QUI.Space(SPACE_2);
 }