Beispiel #1
0
 private void OnRankMedalClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndRankMedal)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndRankMedal;
         CurrentModuleChanged();
     }
 }
Beispiel #2
0
 private void OnRecordClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndRecord)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndRecord;
         CurrentModuleChanged();
     }
 }
Beispiel #3
0
 private void OnPluginManagerClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndPluginMgr)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndPluginMgr;
         CurrentModuleChanged();
     }
 }
Beispiel #4
0
 private void OnMatchScheduleClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndMatchSchedule)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndMatchSchedule;
         CurrentModuleChanged();
     }
 }
Beispiel #5
0
 private void OnDrawArrangeClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndDrawArrange)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndDrawArrange;
         CurrentModuleChanged();
     }
 }
Beispiel #6
0
 private void OnGeneralDataClick(object sender, EventArgs e)
 {
     if (this.m_emMainFormUI != EMainFormUIType.emWndGeneralData)
     {
         this.m_emMainFormUI = EMainFormUIType.emWndGeneralData;
         CurrentModuleChanged();
     }
 }
Beispiel #7
0
        public OVRMainFrameForm()
        {
            this.SuspendLayout();

            InitializeComponent();

            // Module Form
            this.panelModuleForm.SuspendLayout();
            this.panelModuleForm.Dock = DockStyle.Fill;

            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.spliterGameMgr,
                this.panelModuleForm,
                this.sideBarGameMgr
            });
            this.panelModuleForm.ResumeLayout(false);
            this.ResumeLayout(false);

            this.m_emMainFormUI   = EMainFormUIType.emUnknown;
            this.m_bIsNetworkOpen = false;
        }