public void DisableTab(MetroTabPage tabpage) { if (!this.tabDisable.Contains(tabpage.Name)) { if (base.SelectedTab == tabpage && base.TabCount == 1) { return; } if (base.SelectedTab == tabpage) { if (base.SelectedIndex != base.TabCount - 1) { MetroTabControl selectedIndex = this; selectedIndex.SelectedIndex = selectedIndex.SelectedIndex + 1; } else { base.SelectedIndex = 0; } } int num = this.TabPages.IndexOf(tabpage); this.tabDisable.Add(tabpage.Name); Graphics graphic = base.CreateGraphics(); this.DrawTab(num, graphic); this.DrawTabBottomBorder(base.SelectedIndex, graphic); this.DrawTabSelected(base.SelectedIndex, graphic); } }
public void Open(IDocumentBase uc) { MetroTabPage pg = new MetroFramework.Controls.MetroTabPage(); pg.StyleManager = ERPFramework.GlobalInfo.StyleManager; pg.UseStyleColors = true; pg.AutoScroll = false; pg.SizeChanged += Pg_SizeChanged; pg.Text = uc.Title; uc.Exit += Uc_Exit; MetroUserControl muc = uc as MetroUserControl; muc.UseStyleColors = true; ERPFramework.GlobalInfo.StyleManager.Clone(muc); pg.Controls.Add(muc); TabPages.Add(pg); int p = TabPages.Count - 1; SelectedTab = pg; muc.Size = new Size(pg.Width, pg.Height - 5); pg.StyleManager.Update(); muc.Focus(); }
/// <summary> /// This will disable a MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage"></param> public void DisableTab(MetroTabPage tabpage) { if (!tabDisable.Contains(tabpage.Name)) { if (this.SelectedTab == tabpage && this.TabCount == 1) { return; } if (this.SelectedTab == tabpage) { if (SelectedIndex == this.TabCount - 1) { SelectedIndex = 0; } else { SelectedIndex++; } } int _tabid = this.TabPages.IndexOf(tabpage); tabDisable.Add(tabpage.Name); Graphics e = this.CreateGraphics(); DrawTab(_tabid, e); DrawTabBottomBorder(SelectedIndex, e); DrawTabSelected(SelectedIndex, e); } }
private bool IsCloseButtonClick(MetroTabPage page, Point location) { var index = TabPages.IndexOf(page); var rectangle = GetTabRect(index); var closeRectagle = GetCloseButtonRectangle(rectangle); return(IsInCloseButtonArea(closeRectagle, location)); }
protected virtual void OnTabPageClosed(MetroTabPage page) { var pageClosed = TabPageClosed; if (pageClosed != null) { pageClosed(this, new TabPageClosedEventArgs(page)); } }
public void HideTab(MetroTabPage tabpage) { if (this.TabPages.Contains(tabpage)) { int num = this.TabPages.IndexOf(tabpage); this.hidTabs.Add(new HiddenTabs(num, tabpage.Name)); this.TabPages.Remove(tabpage); } }
public void ShowTab(MetroTabPage tabpage) { HiddenTabs hiddenTab = this.hidTabs.Find((HiddenTabs bk) => bk.tabpage == tabpage.Name); if (hiddenTab != null) { this.TabPages.Insert(hiddenTab.index, tabpage); this.hidTabs.Remove(hiddenTab); } }
private void SetHoverTab(MetroTabPage page) { _hoverTab = page; if (DesignMode) { return; } Invalidate(); }
protected override void OnMouseDown(MouseEventArgs e) { MetroTabPage page = GetTabPageAtPoint(e.Location); if (CanCloseTab(page) && IsCloseButtonClick(page, e.Location)) { CloseTabPage(page); } base.OnMouseDown(e); }
/// <summary> /// This will check if MetroTabPage is hidden or not /// true if hidden otherwise false /// </summary> public bool IsTabHidden(MetroTabPage tabpage) { HiddenTabs result = hidTabs.Find( delegate(HiddenTabs bk) { return(bk.tabpage == tabpage.Name); } ); return(result != null); }
public void EnableTab(MetroTabPage tabpage) { if (this.tabDisable.Contains(tabpage.Name)) { this.tabDisable.Remove(tabpage.Name); int num = this.TabPages.IndexOf(tabpage); Graphics graphic = base.CreateGraphics(); this.DrawTab(num, graphic); this.DrawTabBottomBorder(base.SelectedIndex, graphic); this.DrawTabSelected(base.SelectedIndex, graphic); } }
/// <summary> /// This will enable a MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage"></param> public void EnableTab(MetroTabPage tabpage) { if (tabDisable.Contains(tabpage.Name)) { tabDisable.Remove(tabpage.Name); int _tabid = this.TabPages.IndexOf(tabpage); Graphics e = this.CreateGraphics(); DrawTab(_tabid, e); DrawTabBottomBorder(SelectedIndex, e); DrawTabSelected(SelectedIndex, e); } }
private bool CanCloseTab(MetroTabPage tabPage) { if (tabPage == null) { return(false); } if (!tabPage.AllowClose) { return(false); } return(tabPage == _hoverTab || tabPage == SelectedTab); }
private void InitializeTabAndTitles() { metroTabPage1.CustomBackground = true; metroTabPage1.BackColor = ColorTranslator.FromHtml("#001941"); var tabs = GetRibbonMenuTags(); foreach (var item in tabs) { var tab = new MetroTabPage(); tab.AutoScroll = true; tab.Enabled = true; tab.HorizontalScrollbar = true; tab.HorizontalScrollbarBarColor = true; tab.HorizontalScrollbarHighlightOnWheel = false; tab.HorizontalScrollbarSize = 10; //tab.Location = new System.Drawing.Point(4, 35); tab.Name = item.Name; tab.Padding = new System.Windows.Forms.Padding(25); //tab.Size = new System.Drawing.Size(522, 253); tab.TabIndex = 0; tab.Text = item.Name; tab.VerticalScrollbar = true; tab.VerticalScrollbarBarColor = true; tab.VerticalScrollbarHighlightOnWheel = false; tab.VerticalScrollbarSize = 10; tab.Visible = true; tab.CustomBackground = true; tab.BackColor = ColorTranslator.FromHtml("#001941"); int maxwith = metroTabControl1.Width; int x = 5; int y = 5; foreach (var title in item.Titles) { title.Location = new Point(x, y); tab.Controls.Add(title); x += title.Width + 2; if (x >= maxwith) { x = 5; y = y + title.Height + 2; } } metroTabControl1.TabPages.Add(tab); } metroTabControl1.SelectedTab = metroTabControl1.TabPages[1]; }
/// <summary> /// This will show hiddent MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage"></param> public void ShowTab(MetroTabPage tabpage) { HiddenTabs result = hidTabs.Find( delegate(HiddenTabs bk) { return(bk.tabpage == tabpage.Name); } ); if (result != null) { this.TabPages.Insert(result.index, tabpage); hidTabs.Remove(result); } }
//End constructor //Create 100 buttons to represent seats. public void createButtons(MetroTabPage tabPage) { seatAvailability = getSeatAvailability(); //Get seat availability of all seats for the show. //Organises the seats in a 10x10 grid. for (int y = 305; y > 10; y -= 32) { for (int x = 20; x < 520; x += 50) { btnSeat = new Button(); //Instantiate a new button //Format the button btnSeat.Location = new Point(x, y); btnSeat.Width = 45; btnSeat.Height = 30; btnSeat.FlatStyle = FlatStyle.Flat; //Appearance of OLD seats. if (i % 10 == 1 || i % 10 == 0) { btnSeat.FlatAppearance.BorderColor = Color.FromArgb(255, 133, 0); } //Appearance of PREMIUM seats. else if (i % 10 == 5 || i % 10 == 6) { btnSeat.FlatAppearance.BorderColor = Color.FromArgb(255, 186, 0); } if (seatAvailability[i - 1]) //Show seat is taken. { btnSeat.FlatStyle = FlatStyle.System; btnSeat.Enabled = false; //Button is disabled. } btnSeat.Text = Convert.ToString(i); //Give the seat a seat number. i++; //Increase seat number tabPage.Controls.Add(btnSeat); //Add button to the tab page. } } i = 1; //Reset seat number back to 1. seatAvailability.Clear(); //Reset seat availability. }
/// <summary> /// This will show hiddent MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage">The tabpage.</param> public void ShowTab(MetroTabPage tabpage) { HiddenTabs result = hidTabs.Find( delegate(HiddenTabs bk) { return bk.tabpage == tabpage.Name; } ); if (result != null) { this.TabPages.Insert(result.index,tabpage); hidTabs.Remove(result); } }
/// <summary> /// Determines whether this instance [can close tab] the specified tab page. /// </summary> /// <param name="tabPage">The tab page.</param> /// <returns><c>true</c> if this instance [can close tab] the specified tab page; otherwise, <c>false</c>.</returns> private bool CanCloseTab(MetroTabPage tabPage) { if (tabPage == null) return false; if (!tabPage.AllowClose) return false; return tabPage == _hoverTab || tabPage == SelectedTab; }
/// <summary> /// This will hide MetroTabPage from MetroTabControl /// Hidden MetroTabPage can be displayed by calling ShowTab functions /// </summary> /// <param name="tabpage">The tabpage.</param> public void HideTab(MetroTabPage tabpage) { if (this.TabPages.Contains(tabpage)) { int _tabid = this.TabPages.IndexOf(tabpage); hidTabs.Add(new HiddenTabs(_tabid, tabpage.Name)); this.TabPages.Remove(tabpage); } }
/// <summary> /// Closes the tab page. /// </summary> /// <param name="page">The page.</param> private void CloseTabPage(MetroTabPage page) { TabPages.Remove(page); OnTabPageClosed(page); }
/// <summary> /// Called when [tab page closed]. /// </summary> /// <param name="page">The page.</param> protected virtual void OnTabPageClosed(MetroTabPage page) { var pageClosed = TabPageClosed; if (pageClosed != null) pageClosed(this, new TabPageClosedEventArgs(page)); }
/// <summary> /// This will check if MetroTabPage is enable or not /// true if enable otherwise false /// </summary> /// <param name="tabpage">The tabpage.</param> /// <returns><c>true</c> if [is tab enable] [the specified tabpage]; otherwise, <c>false</c>.</returns> public bool IsTabEnable(MetroTabPage tabpage) { return tabDisable.Contains(tabpage.Name); }
private void InitializeComponent() { this.components = new Container(); ComponentResourceManager manager = new ComponentResourceManager(typeof(Form1)); this.metroTabControl1 = new MetroTabControl(); this.QAtab = new MetroTabPage(); this.picBox = new PictureBox(); this.markandnextQA = new MetroButton(); this.panel13 = new Panel(); this.metroLabel28 = new MetroLabel(); this.pictureBox5 = new PictureBox(); this.metroLabel27 = new MetroLabel(); this.metroLabel26 = new MetroLabel(); this.metroLabel25 = new MetroLabel(); this.pictureBox4 = new PictureBox(); this.pictureBox3 = new PictureBox(); this.pictureBox2 = new PictureBox(); this.adminchk = new Panel(); this.secnameQA = new Label(); this.textBox1 = new TextBox(); this.S2chkans = new TextBox(); this.sb1 = new TextBox(); this.metroLabel4 = new MetroLabel(); this.rs5 = new TextBox(); this.sb5 = new TextBox(); this.metroLabel3 = new MetroLabel(); this.ans = new TextBox(); this.sb2 = new TextBox(); this.metroLabel2 = new MetroLabel(); this.sb3 = new TextBox(); this.sb4 = new TextBox(); this.metroLabel1 = new MetroLabel(); this.rs4 = new TextBox(); this.rs1 = new TextBox(); this.rs3 = new TextBox(); this.rs2 = new TextBox(); this.sec2 = new TextBox(); this.panel1 = new Panel(); this.QAopd = new Label(); this.QAopc = new Label(); this.QAopb = new Label(); this.QAopa = new Label(); this.metroRadioButton8 = new MetroRadioButton(); this.metroRadioButton7 = new MetroRadioButton(); this.metroRadioButton6 = new MetroRadioButton(); this.metroRadioButton5 = new MetroRadioButton(); this.ref4DI = new TextBox(); this.savennextQA = new MetroButton(); this.panel2 = new Panel(); this.DIQ1 = new Button(); this.DIQ50 = new Button(); this.DIQ2 = new Button(); this.DIQ49 = new Button(); this.DIQ3 = new Button(); this.DIQ48 = new Button(); this.DIQ4 = new Button(); this.DIQ47 = new Button(); this.DIQ5 = new Button(); this.DIQ46 = new Button(); this.DIQ6 = new Button(); this.DIQ45 = new Button(); this.DIQ7 = new Button(); this.DIQ44 = new Button(); this.DIQ8 = new Button(); this.DIQ43 = new Button(); this.DIQ9 = new Button(); this.DIQ42 = new Button(); this.DIQ10 = new Button(); this.DIQ41 = new Button(); this.DIQ11 = new Button(); this.DIQ40 = new Button(); this.DIQ12 = new Button(); this.DIQ39 = new Button(); this.DIQ13 = new Button(); this.DIQ38 = new Button(); this.DIQ14 = new Button(); this.DIQ37 = new Button(); this.DIQ15 = new Button(); this.DIQ36 = new Button(); this.DIQ16 = new Button(); this.DIQ35 = new Button(); this.DIQ17 = new Button(); this.DIQ34 = new Button(); this.DIQ18 = new Button(); this.DIQ33 = new Button(); this.DIQ19 = new Button(); this.DIQ32 = new Button(); this.DIQ20 = new Button(); this.DIQ31 = new Button(); this.DIQ21 = new Button(); this.DIQ30 = new Button(); this.DIQ22 = new Button(); this.DIQ29 = new Button(); this.DIQ23 = new Button(); this.DIQ28 = new Button(); this.DIQ24 = new Button(); this.DIQ27 = new Button(); this.DIQ25 = new Button(); this.DIQ26 = new Button(); this.label1 = new Label(); this.ENGtab = new MetroTabPage(); this.panel18 = new Panel(); this.textBox3 = new TextBox(); this.engchkans = new TextBox(); this.metroLabel9 = new MetroLabel(); this.ans4EN = new TextBox(); this.metroLabel10 = new MetroLabel(); this.secnameENG = new Label(); this.metroLabel11 = new MetroLabel(); this.metroLabel12 = new MetroLabel(); this.markandnextENG = new MetroButton(); this.panel14 = new Panel(); this.metroLabel29 = new MetroLabel(); this.pictureBox6 = new PictureBox(); this.metroLabel30 = new MetroLabel(); this.metroLabel31 = new MetroLabel(); this.metroLabel32 = new MetroLabel(); this.pictureBox7 = new PictureBox(); this.pictureBox8 = new PictureBox(); this.pictureBox9 = new PictureBox(); this.label4 = new Label(); this.savennextENG = new MetroButton(); this.panel6 = new Panel(); this.ENQ1 = new Button(); this.ENQ50 = new Button(); this.ENQ2 = new Button(); this.ENQ49 = new Button(); this.ENQ3 = new Button(); this.ENQ48 = new Button(); this.ENQ4 = new Button(); this.ENQ47 = new Button(); this.ENQ5 = new Button(); this.ENQ46 = new Button(); this.ENQ6 = new Button(); this.ENQ45 = new Button(); this.ENQ7 = new Button(); this.ENQ44 = new Button(); this.ENQ8 = new Button(); this.ENQ43 = new Button(); this.ENQ9 = new Button(); this.ENQ42 = new Button(); this.ENQ10 = new Button(); this.ENQ41 = new Button(); this.ENQ11 = new Button(); this.ENQ40 = new Button(); this.ENQ12 = new Button(); this.ENQ39 = new Button(); this.ENQ13 = new Button(); this.ENQ38 = new Button(); this.ENQ14 = new Button(); this.ENQ37 = new Button(); this.ENQ15 = new Button(); this.ENQ36 = new Button(); this.ENQ16 = new Button(); this.ENQ35 = new Button(); this.ENQ17 = new Button(); this.ENQ34 = new Button(); this.ENQ18 = new Button(); this.ENQ33 = new Button(); this.ENQ19 = new Button(); this.ENQ32 = new Button(); this.ENQ20 = new Button(); this.ENQ31 = new Button(); this.ENQ21 = new Button(); this.ENQ30 = new Button(); this.ENQ22 = new Button(); this.ENQ29 = new Button(); this.ENQ23 = new Button(); this.ENQ28 = new Button(); this.ENQ24 = new Button(); this.ENQ27 = new Button(); this.ENQ25 = new Button(); this.ENQ26 = new Button(); this.ref4EN = new TextBox(); this.panel4 = new Panel(); this.ENGopd = new Label(); this.ENGopc = new Label(); this.ENGopb = new Label(); this.ENGopa = new Label(); this.metroRadioButton1 = new MetroRadioButton(); this.metroRadioButton2 = new MetroRadioButton(); this.metroRadioButton3 = new MetroRadioButton(); this.metroRadioButton4 = new MetroRadioButton(); this.sec1 = new TextBox(); this.GKtab = new MetroTabPage(); this.panel19 = new Panel(); this.textBox11 = new TextBox(); this.chkansGK = new TextBox(); this.metroLabel5 = new MetroLabel(); this.ans4GK = new TextBox(); this.secnameGK = new Label(); this.metroLabel6 = new MetroLabel(); this.metroLabel8 = new MetroLabel(); this.metroLabel7 = new MetroLabel(); this.markandnextGK = new MetroButton(); this.panel15 = new Panel(); this.metroLabel33 = new MetroLabel(); this.pictureBox10 = new PictureBox(); this.metroLabel34 = new MetroLabel(); this.metroLabel35 = new MetroLabel(); this.metroLabel36 = new MetroLabel(); this.pictureBox11 = new PictureBox(); this.pictureBox12 = new PictureBox(); this.pictureBox13 = new PictureBox(); this.label5 = new Label(); this.savennextGK = new MetroButton(); this.panel7 = new Panel(); this.GK1 = new Button(); this.GK50 = new Button(); this.GK2 = new Button(); this.GK49 = new Button(); this.GK3 = new Button(); this.GK48 = new Button(); this.GK4 = new Button(); this.GK47 = new Button(); this.GK5 = new Button(); this.GK46 = new Button(); this.GK6 = new Button(); this.GK45 = new Button(); this.GK7 = new Button(); this.GK44 = new Button(); this.GK8 = new Button(); this.GK43 = new Button(); this.GK9 = new Button(); this.GK42 = new Button(); this.GK10 = new Button(); this.GK41 = new Button(); this.GK11 = new Button(); this.GK40 = new Button(); this.GK12 = new Button(); this.GK39 = new Button(); this.GK13 = new Button(); this.GK38 = new Button(); this.GK14 = new Button(); this.GK37 = new Button(); this.GK15 = new Button(); this.GK36 = new Button(); this.GK16 = new Button(); this.GK35 = new Button(); this.GK17 = new Button(); this.GK34 = new Button(); this.GK18 = new Button(); this.GK33 = new Button(); this.GK19 = new Button(); this.GK32 = new Button(); this.GK20 = new Button(); this.GK31 = new Button(); this.GK21 = new Button(); this.GK30 = new Button(); this.GK22 = new Button(); this.GK29 = new Button(); this.GK23 = new Button(); this.GK28 = new Button(); this.GK24 = new Button(); this.GK27 = new Button(); this.GK25 = new Button(); this.GK26 = new Button(); this.refr4GK = new TextBox(); this.panel5 = new Panel(); this.GKopd = new Label(); this.GKopc = new Label(); this.GKopb = new Label(); this.GKopa = new Label(); this.metroRadioButton9 = new MetroRadioButton(); this.metroRadioButton10 = new MetroRadioButton(); this.metroRadioButton11 = new MetroRadioButton(); this.metroRadioButton12 = new MetroRadioButton(); this.sec3 = new TextBox(); this.RSNtab = new MetroTabPage(); this.panel20 = new Panel(); this.textBox13 = new TextBox(); this.chkansRSN = new TextBox(); this.metroLabel13 = new MetroLabel(); this.ans4RSN = new TextBox(); this.metroLabel14 = new MetroLabel(); this.secnameRSN = new Label(); this.metroLabel15 = new MetroLabel(); this.metroLabel16 = new MetroLabel(); this.markandnextRSN = new MetroButton(); this.panel16 = new Panel(); this.metroLabel37 = new MetroLabel(); this.pictureBox14 = new PictureBox(); this.metroLabel38 = new MetroLabel(); this.metroLabel39 = new MetroLabel(); this.metroLabel40 = new MetroLabel(); this.pictureBox15 = new PictureBox(); this.pictureBox16 = new PictureBox(); this.pictureBox17 = new PictureBox(); this.label6 = new Label(); this.savennextRSN = new MetroButton(); this.panel9 = new Panel(); this.RSN1 = new Button(); this.RSN50 = new Button(); this.RSN2 = new Button(); this.RSN49 = new Button(); this.RSN3 = new Button(); this.RSN48 = new Button(); this.RSN4 = new Button(); this.RSN47 = new Button(); this.RSN5 = new Button(); this.RSN46 = new Button(); this.RSN6 = new Button(); this.RSN45 = new Button(); this.RSN7 = new Button(); this.RSN44 = new Button(); this.RSN8 = new Button(); this.RSN43 = new Button(); this.RSN9 = new Button(); this.RSN42 = new Button(); this.RSN10 = new Button(); this.RSN41 = new Button(); this.RSN11 = new Button(); this.RSN40 = new Button(); this.RSN12 = new Button(); this.RSN39 = new Button(); this.RSN13 = new Button(); this.RSN38 = new Button(); this.RSN14 = new Button(); this.RSN37 = new Button(); this.RSN15 = new Button(); this.RSN36 = new Button(); this.RSN16 = new Button(); this.RSN35 = new Button(); this.RSN17 = new Button(); this.RSN34 = new Button(); this.RSN18 = new Button(); this.RSN33 = new Button(); this.RSN19 = new Button(); this.RSN32 = new Button(); this.RSN20 = new Button(); this.RSN31 = new Button(); this.RSN21 = new Button(); this.RSN30 = new Button(); this.RSN22 = new Button(); this.RSN29 = new Button(); this.RSN23 = new Button(); this.RSN28 = new Button(); this.RSN24 = new Button(); this.RSN27 = new Button(); this.RSN25 = new Button(); this.RSN26 = new Button(); this.refrRSN = new TextBox(); this.panel10 = new Panel(); this.RSNopd = new Label(); this.RSNopc = new Label(); this.RSNopb = new Label(); this.RSNopa = new Label(); this.metroRadioButton13 = new MetroRadioButton(); this.metroRadioButton14 = new MetroRadioButton(); this.metroRadioButton15 = new MetroRadioButton(); this.metroRadioButton16 = new MetroRadioButton(); this.sec4 = new TextBox(); this.MnCtab = new MetroTabPage(); this.panel21 = new Panel(); this.textBox15 = new TextBox(); this.chkansMnC = new TextBox(); this.ans4MnC = new TextBox(); this.secnameMnC = new Label(); this.metroLabel20 = new MetroLabel(); this.metroLabel18 = new MetroLabel(); this.metroLabel17 = new MetroLabel(); this.metroLabel19 = new MetroLabel(); this.markandnextMnC = new MetroButton(); this.panel17 = new Panel(); this.metroLabel41 = new MetroLabel(); this.pictureBox18 = new PictureBox(); this.metroLabel42 = new MetroLabel(); this.metroLabel43 = new MetroLabel(); this.metroLabel44 = new MetroLabel(); this.pictureBox19 = new PictureBox(); this.pictureBox20 = new PictureBox(); this.pictureBox21 = new PictureBox(); this.label7 = new Label(); this.savennextMnC = new MetroButton(); this.panel11 = new Panel(); this.MnC1 = new Button(); this.MnC50 = new Button(); this.MnC2 = new Button(); this.MnC49 = new Button(); this.MnC3 = new Button(); this.MnC48 = new Button(); this.MnC4 = new Button(); this.MnC47 = new Button(); this.MnC5 = new Button(); this.MnC46 = new Button(); this.MnC6 = new Button(); this.MnC45 = new Button(); this.MnC7 = new Button(); this.MnC44 = new Button(); this.MnC8 = new Button(); this.MnC43 = new Button(); this.MnC9 = new Button(); this.MnC42 = new Button(); this.MnC10 = new Button(); this.MnC41 = new Button(); this.MnC11 = new Button(); this.MnC40 = new Button(); this.MnC12 = new Button(); this.MnC39 = new Button(); this.MnC13 = new Button(); this.MnC38 = new Button(); this.MnC14 = new Button(); this.MnC37 = new Button(); this.MnC15 = new Button(); this.MnC36 = new Button(); this.MnC16 = new Button(); this.MnC35 = new Button(); this.MnC17 = new Button(); this.MnC34 = new Button(); this.MnC18 = new Button(); this.MnC33 = new Button(); this.MnC19 = new Button(); this.MnC32 = new Button(); this.MnC20 = new Button(); this.MnC31 = new Button(); this.MnC21 = new Button(); this.MnC30 = new Button(); this.MnC22 = new Button(); this.MnC29 = new Button(); this.MnC23 = new Button(); this.MnC28 = new Button(); this.MnC24 = new Button(); this.MnC27 = new Button(); this.MnC25 = new Button(); this.MnC26 = new Button(); this.refrMnC = new TextBox(); this.panel12 = new Panel(); this.MnCopd = new Label(); this.MnCopc = new Label(); this.MnCopb = new Label(); this.MnCopa = new Label(); this.metroRadioButton17 = new MetroRadioButton(); this.metroRadioButton18 = new MetroRadioButton(); this.metroRadioButton19 = new MetroRadioButton(); this.metroRadioButton20 = new MetroRadioButton(); this.sec5 = new TextBox(); this.metroPanel2 = new MetroPanel(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.backgroundWorker1 = new BackgroundWorker(); this.revbtn = new MetroButton(); this.metroProgressBar1 = new MetroProgressBar(); this.metroLabel21 = new MetroLabel(); this.total = new MetroLabel(); this.metroLabel22 = new MetroLabel(); this.metroLabel23 = new MetroLabel(); this.right = new MetroLabel(); this.wrong = new MetroLabel(); this.metroLabel24 = new MetroLabel(); this.unans = new MetroLabel(); this.pictureBox1 = new PictureBox(); this.pass = new MetroLabel(); this.fail = new MetroLabel(); this.metroProgressSpinner1 = new MetroProgressSpinner(); this.aftrsbmitpnl = new Panel(); this.metroLabel46 = new MetroLabel(); this.metroLabel47 = new MetroLabel(); this.panel24 = new Panel(); this.online = new MetroButton(); this.metroButton7 = new MetroButton(); this.metroButton6 = new MetroButton(); this.panel3 = new Panel(); this.lblHr = new Label(); this.lblMin = new Label(); this.lblSec = new Label(); this.pictureBox22 = new PictureBox(); this.submit = new TextBox(); this.panel23 = new Panel(); this.panel22 = new Panel(); this.metroLabel45 = new MetroLabel(); this.metroButton8 = new MetroButton(); this.metroButton1 = new MetroButton(); this.metroButton2 = new MetroButton(); this.button1 = new Button(); this.panel25 = new Panel(); this.panel8 = new Panel(); this.metroTabControl1.SuspendLayout(); this.QAtab.SuspendLayout(); ((ISupportInitialize) this.picBox).BeginInit(); this.panel13.SuspendLayout(); ((ISupportInitialize) this.pictureBox5).BeginInit(); ((ISupportInitialize) this.pictureBox4).BeginInit(); ((ISupportInitialize) this.pictureBox3).BeginInit(); ((ISupportInitialize) this.pictureBox2).BeginInit(); this.adminchk.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.ENGtab.SuspendLayout(); this.panel18.SuspendLayout(); this.panel14.SuspendLayout(); ((ISupportInitialize) this.pictureBox6).BeginInit(); ((ISupportInitialize) this.pictureBox7).BeginInit(); ((ISupportInitialize) this.pictureBox8).BeginInit(); ((ISupportInitialize) this.pictureBox9).BeginInit(); this.panel6.SuspendLayout(); this.panel4.SuspendLayout(); this.GKtab.SuspendLayout(); this.panel19.SuspendLayout(); this.panel15.SuspendLayout(); ((ISupportInitialize) this.pictureBox10).BeginInit(); ((ISupportInitialize) this.pictureBox11).BeginInit(); ((ISupportInitialize) this.pictureBox12).BeginInit(); ((ISupportInitialize) this.pictureBox13).BeginInit(); this.panel7.SuspendLayout(); this.panel5.SuspendLayout(); this.RSNtab.SuspendLayout(); this.panel20.SuspendLayout(); this.panel16.SuspendLayout(); ((ISupportInitialize) this.pictureBox14).BeginInit(); ((ISupportInitialize) this.pictureBox15).BeginInit(); ((ISupportInitialize) this.pictureBox16).BeginInit(); ((ISupportInitialize) this.pictureBox17).BeginInit(); this.panel9.SuspendLayout(); this.panel10.SuspendLayout(); this.MnCtab.SuspendLayout(); this.panel21.SuspendLayout(); this.panel17.SuspendLayout(); ((ISupportInitialize) this.pictureBox18).BeginInit(); ((ISupportInitialize) this.pictureBox19).BeginInit(); ((ISupportInitialize) this.pictureBox20).BeginInit(); ((ISupportInitialize) this.pictureBox21).BeginInit(); this.panel11.SuspendLayout(); this.panel12.SuspendLayout(); ((ISupportInitialize) this.pictureBox1).BeginInit(); this.aftrsbmitpnl.SuspendLayout(); this.panel24.SuspendLayout(); this.panel3.SuspendLayout(); ((ISupportInitialize) this.pictureBox22).BeginInit(); this.panel23.SuspendLayout(); this.panel25.SuspendLayout(); this.panel8.SuspendLayout(); base.SuspendLayout(); this.metroTabControl1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroTabControl1.Controls.Add(this.QAtab); this.metroTabControl1.Controls.Add(this.ENGtab); this.metroTabControl1.Controls.Add(this.GKtab); this.metroTabControl1.Controls.Add(this.RSNtab); this.metroTabControl1.Controls.Add(this.MnCtab); this.metroTabControl1.FontWeight = MetroTabControlWeight.Bold; this.metroTabControl1.HotTrack = true; this.metroTabControl1.ItemSize = new Size(90, 0x1f); this.metroTabControl1.Location = new Point(0, 70); this.metroTabControl1.Margin = new Padding(50, 30, 30, 30); this.metroTabControl1.Multiline = true; this.metroTabControl1.Name = "metroTabControl1"; this.metroTabControl1.SelectedIndex = 4; this.metroTabControl1.Size = new Size(0x400, 0x300); this.metroTabControl1.Style = MetroColorStyle.Black; this.metroTabControl1.TabIndex = 1; this.metroTabControl1.TextAlign = ContentAlignment.TopCenter; this.metroTabControl1.Theme = MetroThemeStyle.Light; this.metroTabControl1.UseCustomBackColor = true; this.metroTabControl1.UseSelectable = true; this.metroTabControl1.UseStyleColors = true; this.metroTabControl1.TabIndexChanged += new EventHandler(this.metroTabControl1_TabIndexChanged); this.metroTabControl1.Click += new EventHandler(this.metroTabControl1_Click); this.QAtab.Controls.Add(this.picBox); this.QAtab.Controls.Add(this.markandnextQA); this.QAtab.Controls.Add(this.panel13); this.QAtab.Controls.Add(this.panel8); this.QAtab.Controls.Add(this.savennextQA); this.QAtab.Controls.Add(this.panel2); this.QAtab.Controls.Add(this.label1); this.QAtab.Controls.Add(this.adminchk); this.QAtab.HorizontalScrollbar = true; this.QAtab.HorizontalScrollbarBarColor = true; this.QAtab.HorizontalScrollbarHighlightOnWheel = false; this.QAtab.HorizontalScrollbarSize = 10; this.QAtab.Location = new Point(4, 0x23); this.QAtab.Margin = new Padding(10); this.QAtab.Name = "QAtab"; this.QAtab.Size = new Size(0x3f8, 0x2d9); this.QAtab.Style = MetroColorStyle.Blue; this.QAtab.TabIndex = 1; this.QAtab.Text = "Quantitative Apt"; this.QAtab.Theme = MetroThemeStyle.Light; this.QAtab.VerticalScrollbar = true; this.QAtab.VerticalScrollbarBarColor = true; this.QAtab.VerticalScrollbarHighlightOnWheel = false; this.QAtab.VerticalScrollbarSize = 15; this.picBox.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.picBox.Location = new Point(0x4c, 2); this.picBox.Name = "picBox"; this.picBox.Size = new Size(0x2a5, 0x11c); this.picBox.SizeMode = PictureBoxSizeMode.StretchImage; this.picBox.TabIndex = 0x19; this.picBox.TabStop = false; this.picBox.DragDrop += new DragEventHandler(this.picBox_DragDrop); this.picBox.DragEnter += new DragEventHandler(this.picBox_DragEnter); this.markandnextQA.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextQA.Location = new Point(0x2f6, 0x196); this.markandnextQA.Name = "markandnextQA"; this.markandnextQA.Size = new Size(0x7c, 0x2d); this.markandnextQA.Style = MetroColorStyle.Blue; this.markandnextQA.TabIndex = 0x5f; this.markandnextQA.Text = "Mark and Next"; this.markandnextQA.Theme = MetroThemeStyle.Light; this.markandnextQA.UseSelectable = true; this.markandnextQA.Click += new EventHandler(this.metroButton9_Click); this.panel13.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel13.BackColor = SystemColors.InactiveCaptionText; this.panel13.Controls.Add(this.metroLabel28); this.panel13.Controls.Add(this.pictureBox5); this.panel13.Controls.Add(this.metroLabel27); this.panel13.Controls.Add(this.metroLabel26); this.panel13.Controls.Add(this.metroLabel25); this.panel13.Controls.Add(this.pictureBox4); this.panel13.Controls.Add(this.pictureBox3); this.panel13.Controls.Add(this.pictureBox2); this.panel13.Location = new Point(0x2f6, 0x1c6); this.panel13.Name = "panel13"; this.panel13.Size = new Size(0x105, 0xb2); this.panel13.TabIndex = 0x5e; this.metroLabel28.AutoSize = true; this.metroLabel28.BackColor = Color.Transparent; this.metroLabel28.FontWeight = MetroLabelWeight.Bold; this.metroLabel28.Location = new Point(0x3b, 0x94); this.metroLabel28.Name = "metroLabel28"; this.metroLabel28.Size = new Size(0x8b, 0x13); this.metroLabel28.Style = MetroColorStyle.Purple; this.metroLabel28.TabIndex = 0x65; this.metroLabel28.Text = "Marked For Review"; this.metroLabel28.Theme = MetroThemeStyle.Dark; this.metroLabel28.UseCustomBackColor = true; this.metroLabel28.UseStyleColors = true; this.pictureBox5.BackColor = Color.White; this.pictureBox5.Image = Resources.rvw; this.pictureBox5.Location = new Point(3, 0x8f); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new Size(30, 30); this.pictureBox5.TabIndex = 100; this.pictureBox5.TabStop = false; this.metroLabel27.AutoSize = true; this.metroLabel27.BackColor = Color.Transparent; this.metroLabel27.FontWeight = MetroLabelWeight.Bold; this.metroLabel27.Location = new Point(60, 0x63); this.metroLabel27.Name = "metroLabel27"; this.metroLabel27.Size = new Size(0x53, 0x13); this.metroLabel27.Style = MetroColorStyle.White; this.metroLabel27.TabIndex = 0x63; this.metroLabel27.Text = "Not Visited"; this.metroLabel27.Theme = MetroThemeStyle.Dark; this.metroLabel27.UseCustomBackColor = true; this.metroLabel27.UseStyleColors = true; this.metroLabel26.AutoSize = true; this.metroLabel26.BackColor = Color.Transparent; this.metroLabel26.FontWeight = MetroLabelWeight.Bold; this.metroLabel26.Location = new Point(60, 0x35); this.metroLabel26.Name = "metroLabel26"; this.metroLabel26.Size = new Size(0x68, 0x13); this.metroLabel26.Style = MetroColorStyle.Red; this.metroLabel26.TabIndex = 0x62; this.metroLabel26.Text = "Not Answered"; this.metroLabel26.Theme = MetroThemeStyle.Dark; this.metroLabel26.UseCustomBackColor = true; this.metroLabel26.UseStyleColors = true; this.metroLabel25.AutoSize = true; this.metroLabel25.BackColor = Color.Transparent; this.metroLabel25.FontWeight = MetroLabelWeight.Bold; this.metroLabel25.Location = new Point(60, 7); this.metroLabel25.Name = "metroLabel25"; this.metroLabel25.Size = new Size(0x4b, 0x13); this.metroLabel25.Style = MetroColorStyle.Green; this.metroLabel25.TabIndex = 0x5f; this.metroLabel25.Text = "Answered"; this.metroLabel25.Theme = MetroThemeStyle.Dark; this.metroLabel25.UseCustomBackColor = true; this.metroLabel25.UseStyleColors = true; this.pictureBox4.BackColor = Color.White; this.pictureBox4.Location = new Point(3, 0x5f); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new Size(30, 30); this.pictureBox4.TabIndex = 0x61; this.pictureBox4.TabStop = false; this.pictureBox3.Image = Resources.unchk; this.pictureBox3.Location = new Point(3, 0x31); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new Size(30, 30); this.pictureBox3.TabIndex = 0x60; this.pictureBox3.TabStop = false; this.pictureBox2.Image = Resources.chk1; this.pictureBox2.Location = new Point(3, 3); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(30, 30); this.pictureBox2.TabIndex = 0x5f; this.pictureBox2.TabStop = false; this.adminchk.BackColor = Color.Transparent; this.adminchk.Controls.Add(this.secnameQA); this.adminchk.Controls.Add(this.textBox1); this.adminchk.Controls.Add(this.S2chkans); this.adminchk.Controls.Add(this.sb1); this.adminchk.Controls.Add(this.metroLabel4); this.adminchk.Controls.Add(this.rs5); this.adminchk.Controls.Add(this.sb5); this.adminchk.Controls.Add(this.metroLabel3); this.adminchk.Controls.Add(this.ans); this.adminchk.Controls.Add(this.sb2); this.adminchk.Controls.Add(this.metroLabel2); this.adminchk.Controls.Add(this.sb3); this.adminchk.Controls.Add(this.sb4); this.adminchk.Controls.Add(this.metroLabel1); this.adminchk.Controls.Add(this.rs4); this.adminchk.Controls.Add(this.rs1); this.adminchk.Controls.Add(this.rs3); this.adminchk.Controls.Add(this.rs2); this.adminchk.Location = new Point(0x37b, 7); this.adminchk.Name = "adminchk"; this.adminchk.Size = new Size(0x90, 0x189); this.adminchk.TabIndex = 0x5d; this.adminchk.Visible = false; this.secnameQA.AutoSize = true; this.secnameQA.Location = new Point(13, 0x2e); this.secnameQA.Name = "secnameQA"; this.secnameQA.Size = new Size(0x1a, 13); this.secnameQA.TabIndex = 0x60; this.secnameQA.Text = "DIQ"; this.textBox1.Location = new Point(0x4f, 0x2e); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.Size = new Size(0x18, 0x1b); this.textBox1.TabIndex = 0x4a; this.textBox1.Text = "1"; this.S2chkans.Location = new Point(0x10, 0x4f); this.S2chkans.Name = "S2chkans"; this.S2chkans.Size = new Size(40, 20); this.S2chkans.TabIndex = 0x18; this.sb1.Location = new Point(0x19, 0x84); this.sb1.Name = "sb1"; this.sb1.Size = new Size(40, 20); this.sb1.TabIndex = 0x51; this.metroLabel4.AutoSize = true; this.metroLabel4.FontWeight = MetroLabelWeight.Bold; this.metroLabel4.Location = new Point(0x2a, 0x16f); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new Size(0x3d, 0x13); this.metroLabel4.Style = MetroColorStyle.Black; this.metroLabel4.TabIndex = 0x17; this.metroLabel4.Text = "option4"; this.metroLabel4.Theme = MetroThemeStyle.Light; this.metroLabel4.UseStyleColors = true; this.rs5.Location = new Point(0x4f, 0xec); this.rs5.Name = "rs5"; this.rs5.Size = new Size(40, 20); this.rs5.TabIndex = 90; this.sb5.Location = new Point(0x19, 0xec); this.sb5.Name = "sb5"; this.sb5.Size = new Size(40, 20); this.sb5.TabIndex = 0x55; this.metroLabel3.AutoSize = true; this.metroLabel3.BackColor = Color.Transparent; this.metroLabel3.FontWeight = MetroLabelWeight.Bold; this.metroLabel3.Location = new Point(0x2a, 0x141); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new Size(0x3d, 0x13); this.metroLabel3.Style = MetroColorStyle.Black; this.metroLabel3.TabIndex = 0x18; this.metroLabel3.Text = "option3"; this.metroLabel3.Theme = MetroThemeStyle.Light; this.metroLabel3.UseStyleColors = true; this.ans.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.ans.Location = new Point(0x4f, 0x4f); this.ans.Name = "ans"; this.ans.Size = new Size(40, 0x16); this.ans.TabIndex = 0x5c; this.sb2.Location = new Point(0x19, 0x9e); this.sb2.Name = "sb2"; this.sb2.Size = new Size(40, 20); this.sb2.TabIndex = 0x52; this.metroLabel2.AutoSize = true; this.metroLabel2.FontWeight = MetroLabelWeight.Bold; this.metroLabel2.Location = new Point(0x2a, 0x129); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new Size(0x3d, 0x13); this.metroLabel2.Style = MetroColorStyle.Black; this.metroLabel2.TabIndex = 0x19; this.metroLabel2.Text = "option2"; this.metroLabel2.Theme = MetroThemeStyle.Light; this.metroLabel2.UseStyleColors = true; this.sb3.Location = new Point(0x19, 0xb8); this.sb3.Name = "sb3"; this.sb3.Size = new Size(40, 20); this.sb3.TabIndex = 0x53; this.sb4.Location = new Point(0x19, 210); this.sb4.Name = "sb4"; this.sb4.Size = new Size(40, 20); this.sb4.TabIndex = 0x54; this.metroLabel1.AutoSize = true; this.metroLabel1.FontWeight = MetroLabelWeight.Bold; this.metroLabel1.ForeColor = Color.Black; this.metroLabel1.Location = new Point(0x2a, 0x106); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new Size(0x3d, 0x13); this.metroLabel1.Style = MetroColorStyle.Black; this.metroLabel1.TabIndex = 0x1a; this.metroLabel1.Text = "option1"; this.metroLabel1.Theme = MetroThemeStyle.Light; this.metroLabel1.UseStyleColors = true; this.rs4.Location = new Point(0x4f, 210); this.rs4.Name = "rs4"; this.rs4.Size = new Size(40, 20); this.rs4.TabIndex = 0x59; this.rs1.Location = new Point(0x4f, 0x84); this.rs1.Name = "rs1"; this.rs1.Size = new Size(40, 20); this.rs1.TabIndex = 0x56; this.rs3.Location = new Point(0x4f, 0xb8); this.rs3.Name = "rs3"; this.rs3.Size = new Size(40, 20); this.rs3.TabIndex = 0x58; this.rs2.Location = new Point(0x4f, 0x9e); this.rs2.Name = "rs2"; this.rs2.Size = new Size(40, 20); this.rs2.TabIndex = 0x57; this.sec2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec2.BackColor = Color.White; this.sec2.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec2.Location = new Point(10, 3); this.sec2.Multiline = true; this.sec2.Name = "sec2"; this.sec2.ReadOnly = true; this.sec2.ScrollBars = ScrollBars.Vertical; this.sec2.Size = new Size(0x2a5, 0x84); this.sec2.TabIndex = 0x4e; this.panel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel1.BackColor = Color.Transparent; this.panel1.Controls.Add(this.QAopd); this.panel1.Controls.Add(this.QAopc); this.panel1.Controls.Add(this.QAopb); this.panel1.Controls.Add(this.QAopa); this.panel1.Controls.Add(this.metroRadioButton8); this.panel1.Controls.Add(this.metroRadioButton7); this.panel1.Controls.Add(this.metroRadioButton6); this.panel1.Controls.Add(this.metroRadioButton5); this.panel1.Location = new Point(10, 0x8a); this.panel1.Name = "panel1"; this.panel1.Size = new Size(0x2a5, 0x7f); this.panel1.TabIndex = 0x4f; this.QAopd.AutoSize = true; this.QAopd.Font = new Font("Britannic Bold", 11.25f); this.QAopd.Location = new Point(0x35, 0x67); this.QAopd.Name = "QAopd"; this.QAopd.Size = new Size(0x24, 0x10); this.QAopd.TabIndex = 0x7b; this.QAopd.Text = "OpD"; this.QAopc.AutoSize = true; this.QAopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.QAopc.Location = new Point(0x36, 0x4a); this.QAopc.Name = "QAopc"; this.QAopc.Size = new Size(0x23, 0x10); this.QAopc.TabIndex = 0x7a; this.QAopc.Text = "OpC"; this.QAopb.AutoSize = true; this.QAopb.Font = new Font("Britannic Bold", 11.25f); this.QAopb.Location = new Point(0x36, 0x2d); this.QAopb.Name = "QAopb"; this.QAopb.Size = new Size(0x23, 0x10); this.QAopb.TabIndex = 0x79; this.QAopb.Text = "OpB"; this.QAopa.AutoSize = true; this.QAopa.Font = new Font("Britannic Bold", 11.25f); this.QAopa.Location = new Point(0x36, 13); this.QAopa.Name = "QAopa"; this.QAopa.Size = new Size(0x22, 0x10); this.QAopa.TabIndex = 120; this.QAopa.Text = "OpA"; this.metroRadioButton8.AutoSize = true; this.metroRadioButton8.Location = new Point(0x11, 14); this.metroRadioButton8.Name = "metroRadioButton8"; this.metroRadioButton8.Size = new Size(0x1f, 15); this.metroRadioButton8.Style = MetroColorStyle.Blue; this.metroRadioButton8.TabIndex = 0x1b; this.metroRadioButton8.TabStop = true; this.metroRadioButton8.Text = "A"; this.metroRadioButton8.Theme = MetroThemeStyle.Light; this.metroRadioButton8.UseSelectable = true; this.metroRadioButton8.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton8.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton7.AutoSize = true; this.metroRadioButton7.Location = new Point(0x11, 0x2e); this.metroRadioButton7.Name = "metroRadioButton7"; this.metroRadioButton7.Size = new Size(30, 15); this.metroRadioButton7.Style = MetroColorStyle.Blue; this.metroRadioButton7.TabIndex = 0x1c; this.metroRadioButton7.TabStop = true; this.metroRadioButton7.Text = "B"; this.metroRadioButton7.Theme = MetroThemeStyle.Light; this.metroRadioButton7.UseSelectable = true; this.metroRadioButton7.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton7.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton6.AutoSize = true; this.metroRadioButton6.Location = new Point(0x11, 0x4b); this.metroRadioButton6.Name = "metroRadioButton6"; this.metroRadioButton6.Size = new Size(0x1f, 15); this.metroRadioButton6.Style = MetroColorStyle.Blue; this.metroRadioButton6.TabIndex = 0x1d; this.metroRadioButton6.TabStop = true; this.metroRadioButton6.Text = "C"; this.metroRadioButton6.Theme = MetroThemeStyle.Light; this.metroRadioButton6.UseSelectable = true; this.metroRadioButton6.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton6.Click += new EventHandler(this.radioButton_Click); this.metroRadioButton5.AutoSize = true; this.metroRadioButton5.Location = new Point(0x11, 0x68); this.metroRadioButton5.Name = "metroRadioButton5"; this.metroRadioButton5.Size = new Size(0x1f, 15); this.metroRadioButton5.Style = MetroColorStyle.Blue; this.metroRadioButton5.TabIndex = 30; this.metroRadioButton5.TabStop = true; this.metroRadioButton5.Text = "D"; this.metroRadioButton5.Theme = MetroThemeStyle.Light; this.metroRadioButton5.UseSelectable = true; this.metroRadioButton5.CheckedChanged += new EventHandler(this.rbchk1); this.metroRadioButton5.Click += new EventHandler(this.radioButton_Click); this.ref4DI.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.ref4DI.BackColor = Color.White; this.ref4DI.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ref4DI.Location = new Point(9, 0x10a); this.ref4DI.Multiline = true; this.ref4DI.Name = "ref4DI"; this.ref4DI.ReadOnly = true; this.ref4DI.ScrollBars = ScrollBars.Vertical; this.ref4DI.Size = new Size(0x2a5, 0x3f); this.ref4DI.TabIndex = 80; this.savennextQA.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextQA.Location = new Point(0x378, 0x196); this.savennextQA.Name = "savennextQA"; this.savennextQA.Size = new Size(0x83, 0x2d); this.savennextQA.Style = MetroColorStyle.Blue; this.savennextQA.TabIndex = 0x16; this.savennextQA.Text = "Save and Next"; this.savennextQA.Theme = MetroThemeStyle.Light; this.savennextQA.UseSelectable = true; this.savennextQA.Click += new EventHandler(this.savennext_Click); this.panel2.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel2.AutoScroll = true; this.panel2.BackColor = Color.Transparent; this.panel2.BorderStyle = BorderStyle.FixedSingle; this.panel2.Controls.Add(this.DIQ1); this.panel2.Controls.Add(this.DIQ50); this.panel2.Controls.Add(this.DIQ2); this.panel2.Controls.Add(this.DIQ49); this.panel2.Controls.Add(this.DIQ3); this.panel2.Controls.Add(this.DIQ48); this.panel2.Controls.Add(this.DIQ4); this.panel2.Controls.Add(this.DIQ47); this.panel2.Controls.Add(this.DIQ5); this.panel2.Controls.Add(this.DIQ46); this.panel2.Controls.Add(this.DIQ6); this.panel2.Controls.Add(this.DIQ45); this.panel2.Controls.Add(this.DIQ7); this.panel2.Controls.Add(this.DIQ44); this.panel2.Controls.Add(this.DIQ8); this.panel2.Controls.Add(this.DIQ43); this.panel2.Controls.Add(this.DIQ9); this.panel2.Controls.Add(this.DIQ42); this.panel2.Controls.Add(this.DIQ10); this.panel2.Controls.Add(this.DIQ41); this.panel2.Controls.Add(this.DIQ11); this.panel2.Controls.Add(this.DIQ40); this.panel2.Controls.Add(this.DIQ12); this.panel2.Controls.Add(this.DIQ39); this.panel2.Controls.Add(this.DIQ13); this.panel2.Controls.Add(this.DIQ38); this.panel2.Controls.Add(this.DIQ14); this.panel2.Controls.Add(this.DIQ37); this.panel2.Controls.Add(this.DIQ15); this.panel2.Controls.Add(this.DIQ36); this.panel2.Controls.Add(this.DIQ16); this.panel2.Controls.Add(this.DIQ35); this.panel2.Controls.Add(this.DIQ17); this.panel2.Controls.Add(this.DIQ34); this.panel2.Controls.Add(this.DIQ18); this.panel2.Controls.Add(this.DIQ33); this.panel2.Controls.Add(this.DIQ19); this.panel2.Controls.Add(this.DIQ32); this.panel2.Controls.Add(this.DIQ20); this.panel2.Controls.Add(this.DIQ31); this.panel2.Controls.Add(this.DIQ21); this.panel2.Controls.Add(this.DIQ30); this.panel2.Controls.Add(this.DIQ22); this.panel2.Controls.Add(this.DIQ29); this.panel2.Controls.Add(this.DIQ23); this.panel2.Controls.Add(this.DIQ28); this.panel2.Controls.Add(this.DIQ24); this.panel2.Controls.Add(this.DIQ27); this.panel2.Controls.Add(this.DIQ25); this.panel2.Controls.Add(this.DIQ26); this.panel2.Location = new Point(0x2f4, 2); this.panel2.Name = "panel2"; this.panel2.Size = new Size(0x107, 0x18e); this.panel2.TabIndex = 0x4c; this.panel2.Paint += new PaintEventHandler(this.panel2_Paint); this.DIQ1.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ1.FlatAppearance.BorderSize = 2; this.DIQ1.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ1.FlatStyle = FlatStyle.Flat; this.DIQ1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ1.ForeColor = SystemColors.ActiveCaptionText; this.DIQ1.Location = new Point(15, 12); this.DIQ1.Name = "DIQ1"; this.DIQ1.Size = new Size(40, 40); this.DIQ1.TabIndex = 0x74; this.DIQ1.Text = "1"; this.DIQ1.TextAlign = ContentAlignment.TopLeft; this.DIQ1.UseVisualStyleBackColor = true; this.DIQ1.Click += new EventHandler(this.DIQ1_Click_1); this.DIQ50.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ50.FlatAppearance.BorderSize = 2; this.DIQ50.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ50.FlatStyle = FlatStyle.Flat; this.DIQ50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ50.ForeColor = SystemColors.ActiveCaptionText; this.DIQ50.Location = new Point(0xc6, 0x1aa); this.DIQ50.Name = "DIQ50"; this.DIQ50.Size = new Size(40, 40); this.DIQ50.TabIndex = 0xa5; this.DIQ50.Text = "50"; this.DIQ50.TextAlign = ContentAlignment.TopLeft; this.DIQ50.UseVisualStyleBackColor = true; this.DIQ50.Click += new EventHandler(this.DIQ50_Click); this.DIQ2.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ2.FlatAppearance.BorderSize = 2; this.DIQ2.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ2.FlatStyle = FlatStyle.Flat; this.DIQ2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ2.ForeColor = SystemColors.ActiveCaptionText; this.DIQ2.Location = new Point(0x3d, 12); this.DIQ2.Name = "DIQ2"; this.DIQ2.Size = new Size(40, 40); this.DIQ2.TabIndex = 0x75; this.DIQ2.Text = "2"; this.DIQ2.TextAlign = ContentAlignment.TopLeft; this.DIQ2.UseVisualStyleBackColor = true; this.DIQ2.Click += new EventHandler(this.DIQ2_Click); this.DIQ49.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ49.FlatAppearance.BorderSize = 2; this.DIQ49.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ49.FlatStyle = FlatStyle.Flat; this.DIQ49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ49.ForeColor = SystemColors.ActiveCaptionText; this.DIQ49.Location = new Point(0x99, 0x1aa); this.DIQ49.Name = "DIQ49"; this.DIQ49.Size = new Size(40, 40); this.DIQ49.TabIndex = 0xa4; this.DIQ49.Text = "49"; this.DIQ49.TextAlign = ContentAlignment.TopLeft; this.DIQ49.UseVisualStyleBackColor = true; this.DIQ49.Click += new EventHandler(this.DIQ49_Click); this.DIQ3.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ3.FlatAppearance.BorderSize = 2; this.DIQ3.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ3.FlatStyle = FlatStyle.Flat; this.DIQ3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ3.ForeColor = SystemColors.ActiveCaptionText; this.DIQ3.Location = new Point(0x6b, 12); this.DIQ3.Name = "DIQ3"; this.DIQ3.Size = new Size(40, 40); this.DIQ3.TabIndex = 0x76; this.DIQ3.Text = "3"; this.DIQ3.TextAlign = ContentAlignment.TopLeft; this.DIQ3.UseVisualStyleBackColor = true; this.DIQ3.Click += new EventHandler(this.DIQ3_Click); this.DIQ48.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ48.FlatAppearance.BorderSize = 2; this.DIQ48.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ48.FlatStyle = FlatStyle.Flat; this.DIQ48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ48.ForeColor = SystemColors.ActiveCaptionText; this.DIQ48.Location = new Point(0x6b, 0x1aa); this.DIQ48.Name = "DIQ48"; this.DIQ48.Size = new Size(40, 40); this.DIQ48.TabIndex = 0xa3; this.DIQ48.Text = "48"; this.DIQ48.TextAlign = ContentAlignment.TopLeft; this.DIQ48.UseVisualStyleBackColor = true; this.DIQ48.Click += new EventHandler(this.DIQ48_Click); this.DIQ4.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ4.FlatAppearance.BorderSize = 2; this.DIQ4.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ4.FlatStyle = FlatStyle.Flat; this.DIQ4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ4.ForeColor = SystemColors.ActiveCaptionText; this.DIQ4.Location = new Point(0x99, 12); this.DIQ4.Name = "DIQ4"; this.DIQ4.Size = new Size(40, 40); this.DIQ4.TabIndex = 0x77; this.DIQ4.Text = "4"; this.DIQ4.TextAlign = ContentAlignment.TopLeft; this.DIQ4.UseVisualStyleBackColor = true; this.DIQ4.Click += new EventHandler(this.DIQ4_Click); this.DIQ47.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ47.FlatAppearance.BorderSize = 2; this.DIQ47.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ47.FlatStyle = FlatStyle.Flat; this.DIQ47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ47.ForeColor = SystemColors.ActiveCaptionText; this.DIQ47.Location = new Point(0x3d, 0x1aa); this.DIQ47.Name = "DIQ47"; this.DIQ47.Size = new Size(40, 40); this.DIQ47.TabIndex = 0xa2; this.DIQ47.Text = "47"; this.DIQ47.TextAlign = ContentAlignment.TopLeft; this.DIQ47.UseVisualStyleBackColor = true; this.DIQ47.Click += new EventHandler(this.DIQ47_Click); this.DIQ5.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ5.FlatAppearance.BorderSize = 2; this.DIQ5.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ5.FlatStyle = FlatStyle.Flat; this.DIQ5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ5.ForeColor = SystemColors.ActiveCaptionText; this.DIQ5.Location = new Point(0xc6, 12); this.DIQ5.Name = "DIQ5"; this.DIQ5.Size = new Size(40, 40); this.DIQ5.TabIndex = 120; this.DIQ5.Text = "5"; this.DIQ5.TextAlign = ContentAlignment.TopLeft; this.DIQ5.UseVisualStyleBackColor = true; this.DIQ5.Click += new EventHandler(this.DIQ5_Click); this.DIQ46.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ46.FlatAppearance.BorderSize = 2; this.DIQ46.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ46.FlatStyle = FlatStyle.Flat; this.DIQ46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ46.ForeColor = SystemColors.ActiveCaptionText; this.DIQ46.Location = new Point(15, 0x1aa); this.DIQ46.Name = "DIQ46"; this.DIQ46.Size = new Size(40, 40); this.DIQ46.TabIndex = 0xa1; this.DIQ46.Text = "46"; this.DIQ46.TextAlign = ContentAlignment.TopLeft; this.DIQ46.UseVisualStyleBackColor = true; this.DIQ46.Click += new EventHandler(this.DIQ46_Click); this.DIQ6.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ6.FlatAppearance.BorderSize = 2; this.DIQ6.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ6.FlatStyle = FlatStyle.Flat; this.DIQ6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ6.ForeColor = SystemColors.ActiveCaptionText; this.DIQ6.Location = new Point(15, 0x3a); this.DIQ6.Name = "DIQ6"; this.DIQ6.Size = new Size(40, 40); this.DIQ6.TabIndex = 0x79; this.DIQ6.Text = "6"; this.DIQ6.TextAlign = ContentAlignment.TopLeft; this.DIQ6.UseVisualStyleBackColor = true; this.DIQ6.Click += new EventHandler(this.DIQ6_Click); this.DIQ45.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ45.FlatAppearance.BorderSize = 2; this.DIQ45.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ45.FlatStyle = FlatStyle.Flat; this.DIQ45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ45.ForeColor = SystemColors.ActiveCaptionText; this.DIQ45.Location = new Point(0xc6, 380); this.DIQ45.Name = "DIQ45"; this.DIQ45.Size = new Size(40, 40); this.DIQ45.TabIndex = 160; this.DIQ45.Text = "45"; this.DIQ45.TextAlign = ContentAlignment.TopLeft; this.DIQ45.UseVisualStyleBackColor = true; this.DIQ45.Click += new EventHandler(this.DIQ45_Click); this.DIQ7.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ7.FlatAppearance.BorderSize = 2; this.DIQ7.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ7.FlatStyle = FlatStyle.Flat; this.DIQ7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ7.ForeColor = SystemColors.ActiveCaptionText; this.DIQ7.Location = new Point(0x3d, 0x3a); this.DIQ7.Name = "DIQ7"; this.DIQ7.Size = new Size(40, 40); this.DIQ7.TabIndex = 0x7a; this.DIQ7.Text = "7"; this.DIQ7.TextAlign = ContentAlignment.TopLeft; this.DIQ7.UseVisualStyleBackColor = true; this.DIQ7.Click += new EventHandler(this.DIQ7_Click); this.DIQ44.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ44.FlatAppearance.BorderSize = 2; this.DIQ44.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ44.FlatStyle = FlatStyle.Flat; this.DIQ44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ44.ForeColor = SystemColors.ActiveCaptionText; this.DIQ44.Location = new Point(0x99, 380); this.DIQ44.Name = "DIQ44"; this.DIQ44.Size = new Size(40, 40); this.DIQ44.TabIndex = 0x9f; this.DIQ44.Text = "44"; this.DIQ44.TextAlign = ContentAlignment.TopLeft; this.DIQ44.UseVisualStyleBackColor = true; this.DIQ44.Click += new EventHandler(this.DIQ44_Click); this.DIQ8.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ8.FlatAppearance.BorderSize = 2; this.DIQ8.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ8.FlatStyle = FlatStyle.Flat; this.DIQ8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ8.ForeColor = SystemColors.ActiveCaptionText; this.DIQ8.Location = new Point(0x6b, 0x3a); this.DIQ8.Name = "DIQ8"; this.DIQ8.Size = new Size(40, 40); this.DIQ8.TabIndex = 0x7b; this.DIQ8.Text = "8"; this.DIQ8.TextAlign = ContentAlignment.TopLeft; this.DIQ8.UseVisualStyleBackColor = true; this.DIQ8.Click += new EventHandler(this.DIQ8_Click); this.DIQ43.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ43.FlatAppearance.BorderSize = 2; this.DIQ43.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ43.FlatStyle = FlatStyle.Flat; this.DIQ43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ43.ForeColor = SystemColors.ActiveCaptionText; this.DIQ43.Location = new Point(0x6b, 380); this.DIQ43.Name = "DIQ43"; this.DIQ43.Size = new Size(40, 40); this.DIQ43.TabIndex = 0x9e; this.DIQ43.Text = "43"; this.DIQ43.TextAlign = ContentAlignment.TopLeft; this.DIQ43.UseVisualStyleBackColor = true; this.DIQ43.Click += new EventHandler(this.DIQ43_Click); this.DIQ9.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ9.FlatAppearance.BorderSize = 2; this.DIQ9.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ9.FlatStyle = FlatStyle.Flat; this.DIQ9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ9.ForeColor = SystemColors.ActiveCaptionText; this.DIQ9.Location = new Point(0x99, 0x3a); this.DIQ9.Name = "DIQ9"; this.DIQ9.Size = new Size(40, 40); this.DIQ9.TabIndex = 0x7c; this.DIQ9.Text = "9"; this.DIQ9.TextAlign = ContentAlignment.TopLeft; this.DIQ9.UseVisualStyleBackColor = true; this.DIQ9.Click += new EventHandler(this.DIQ9_Click); this.DIQ42.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ42.FlatAppearance.BorderSize = 2; this.DIQ42.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ42.FlatStyle = FlatStyle.Flat; this.DIQ42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ42.ForeColor = SystemColors.ActiveCaptionText; this.DIQ42.Location = new Point(0x3d, 380); this.DIQ42.Name = "DIQ42"; this.DIQ42.Size = new Size(40, 40); this.DIQ42.TabIndex = 0x9d; this.DIQ42.Text = "42"; this.DIQ42.TextAlign = ContentAlignment.TopLeft; this.DIQ42.UseVisualStyleBackColor = true; this.DIQ42.Click += new EventHandler(this.DIQ42_Click); this.DIQ10.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ10.FlatAppearance.BorderSize = 2; this.DIQ10.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ10.FlatStyle = FlatStyle.Flat; this.DIQ10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ10.ForeColor = SystemColors.ActiveCaptionText; this.DIQ10.Location = new Point(0xc6, 0x3a); this.DIQ10.Name = "DIQ10"; this.DIQ10.Size = new Size(40, 40); this.DIQ10.TabIndex = 0x7d; this.DIQ10.Text = "10"; this.DIQ10.TextAlign = ContentAlignment.TopLeft; this.DIQ10.UseVisualStyleBackColor = true; this.DIQ10.Click += new EventHandler(this.DIQ10_Click); this.DIQ41.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ41.FlatAppearance.BorderSize = 2; this.DIQ41.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ41.FlatStyle = FlatStyle.Flat; this.DIQ41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ41.ForeColor = SystemColors.ActiveCaptionText; this.DIQ41.Location = new Point(15, 380); this.DIQ41.Name = "DIQ41"; this.DIQ41.Size = new Size(40, 40); this.DIQ41.TabIndex = 0x9c; this.DIQ41.Text = "41"; this.DIQ41.TextAlign = ContentAlignment.TopLeft; this.DIQ41.UseVisualStyleBackColor = true; this.DIQ41.Click += new EventHandler(this.DIQ41_Click); this.DIQ11.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ11.FlatAppearance.BorderSize = 2; this.DIQ11.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ11.FlatStyle = FlatStyle.Flat; this.DIQ11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ11.ForeColor = SystemColors.ActiveCaptionText; this.DIQ11.Location = new Point(15, 0x68); this.DIQ11.Name = "DIQ11"; this.DIQ11.Size = new Size(40, 40); this.DIQ11.TabIndex = 0x7e; this.DIQ11.Text = "11"; this.DIQ11.TextAlign = ContentAlignment.TopLeft; this.DIQ11.UseVisualStyleBackColor = true; this.DIQ11.Click += new EventHandler(this.DIQ11_Click); this.DIQ40.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ40.FlatAppearance.BorderSize = 2; this.DIQ40.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ40.FlatStyle = FlatStyle.Flat; this.DIQ40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ40.ForeColor = SystemColors.ActiveCaptionText; this.DIQ40.Location = new Point(0xc6, 0x14e); this.DIQ40.Name = "DIQ40"; this.DIQ40.Size = new Size(40, 40); this.DIQ40.TabIndex = 0x9b; this.DIQ40.Text = "40"; this.DIQ40.TextAlign = ContentAlignment.TopLeft; this.DIQ40.UseVisualStyleBackColor = true; this.DIQ40.Click += new EventHandler(this.DIQ40_Click); this.DIQ12.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ12.FlatAppearance.BorderSize = 2; this.DIQ12.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ12.FlatStyle = FlatStyle.Flat; this.DIQ12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ12.ForeColor = SystemColors.ActiveCaptionText; this.DIQ12.Location = new Point(0x3d, 0x68); this.DIQ12.Name = "DIQ12"; this.DIQ12.Size = new Size(40, 40); this.DIQ12.TabIndex = 0x7f; this.DIQ12.Text = "12"; this.DIQ12.TextAlign = ContentAlignment.TopLeft; this.DIQ12.UseVisualStyleBackColor = true; this.DIQ12.Click += new EventHandler(this.DIQ12_Click); this.DIQ39.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ39.FlatAppearance.BorderSize = 2; this.DIQ39.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ39.FlatStyle = FlatStyle.Flat; this.DIQ39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ39.ForeColor = SystemColors.ActiveCaptionText; this.DIQ39.Location = new Point(0x99, 0x14e); this.DIQ39.Name = "DIQ39"; this.DIQ39.Size = new Size(40, 40); this.DIQ39.TabIndex = 0x9a; this.DIQ39.Text = "39"; this.DIQ39.TextAlign = ContentAlignment.TopLeft; this.DIQ39.UseVisualStyleBackColor = true; this.DIQ39.Click += new EventHandler(this.DIQ39_Click); this.DIQ13.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ13.FlatAppearance.BorderSize = 2; this.DIQ13.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ13.FlatStyle = FlatStyle.Flat; this.DIQ13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ13.ForeColor = SystemColors.ActiveCaptionText; this.DIQ13.Location = new Point(0x6b, 0x68); this.DIQ13.Name = "DIQ13"; this.DIQ13.Size = new Size(40, 40); this.DIQ13.TabIndex = 0x80; this.DIQ13.Text = "13"; this.DIQ13.TextAlign = ContentAlignment.TopLeft; this.DIQ13.UseVisualStyleBackColor = true; this.DIQ13.Click += new EventHandler(this.DIQ13_Click); this.DIQ38.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ38.FlatAppearance.BorderSize = 2; this.DIQ38.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ38.FlatStyle = FlatStyle.Flat; this.DIQ38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ38.ForeColor = SystemColors.ActiveCaptionText; this.DIQ38.Location = new Point(0x6b, 0x14e); this.DIQ38.Name = "DIQ38"; this.DIQ38.Size = new Size(40, 40); this.DIQ38.TabIndex = 0x99; this.DIQ38.Text = "38"; this.DIQ38.TextAlign = ContentAlignment.TopLeft; this.DIQ38.UseVisualStyleBackColor = true; this.DIQ38.Click += new EventHandler(this.DIQ38_Click); this.DIQ14.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ14.FlatAppearance.BorderSize = 2; this.DIQ14.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ14.FlatStyle = FlatStyle.Flat; this.DIQ14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ14.ForeColor = SystemColors.ActiveCaptionText; this.DIQ14.Location = new Point(0x99, 0x68); this.DIQ14.Name = "DIQ14"; this.DIQ14.Size = new Size(40, 40); this.DIQ14.TabIndex = 0x81; this.DIQ14.Text = "14"; this.DIQ14.TextAlign = ContentAlignment.TopLeft; this.DIQ14.UseVisualStyleBackColor = true; this.DIQ14.Click += new EventHandler(this.DIQ14_Click); this.DIQ37.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ37.FlatAppearance.BorderSize = 2; this.DIQ37.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ37.FlatStyle = FlatStyle.Flat; this.DIQ37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ37.ForeColor = SystemColors.ActiveCaptionText; this.DIQ37.Location = new Point(0x3d, 0x14e); this.DIQ37.Name = "DIQ37"; this.DIQ37.Size = new Size(40, 40); this.DIQ37.TabIndex = 0x98; this.DIQ37.Text = "37"; this.DIQ37.TextAlign = ContentAlignment.TopLeft; this.DIQ37.UseVisualStyleBackColor = true; this.DIQ37.Click += new EventHandler(this.DIQ37_Click); this.DIQ15.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ15.FlatAppearance.BorderSize = 2; this.DIQ15.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ15.FlatStyle = FlatStyle.Flat; this.DIQ15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ15.ForeColor = SystemColors.ActiveCaptionText; this.DIQ15.Location = new Point(0xc6, 0x68); this.DIQ15.Name = "DIQ15"; this.DIQ15.Size = new Size(40, 40); this.DIQ15.TabIndex = 130; this.DIQ15.Text = "15"; this.DIQ15.TextAlign = ContentAlignment.TopLeft; this.DIQ15.UseVisualStyleBackColor = true; this.DIQ15.Click += new EventHandler(this.DIQ15_Click); this.DIQ36.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ36.FlatAppearance.BorderSize = 2; this.DIQ36.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ36.FlatStyle = FlatStyle.Flat; this.DIQ36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ36.ForeColor = SystemColors.ActiveCaptionText; this.DIQ36.Location = new Point(15, 0x14e); this.DIQ36.Name = "DIQ36"; this.DIQ36.Size = new Size(40, 40); this.DIQ36.TabIndex = 0x97; this.DIQ36.Text = "36"; this.DIQ36.TextAlign = ContentAlignment.TopLeft; this.DIQ36.UseVisualStyleBackColor = true; this.DIQ36.Click += new EventHandler(this.DIQ36_Click); this.DIQ16.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ16.FlatAppearance.BorderSize = 2; this.DIQ16.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ16.FlatStyle = FlatStyle.Flat; this.DIQ16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ16.ForeColor = SystemColors.ActiveCaptionText; this.DIQ16.Location = new Point(15, 150); this.DIQ16.Name = "DIQ16"; this.DIQ16.Size = new Size(40, 40); this.DIQ16.TabIndex = 0x83; this.DIQ16.Text = "16"; this.DIQ16.TextAlign = ContentAlignment.TopLeft; this.DIQ16.UseVisualStyleBackColor = true; this.DIQ16.Click += new EventHandler(this.DIQ16_Click); this.DIQ35.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ35.FlatAppearance.BorderSize = 2; this.DIQ35.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ35.FlatStyle = FlatStyle.Flat; this.DIQ35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ35.ForeColor = SystemColors.ActiveCaptionText; this.DIQ35.Location = new Point(0xc6, 0x120); this.DIQ35.Name = "DIQ35"; this.DIQ35.Size = new Size(40, 40); this.DIQ35.TabIndex = 150; this.DIQ35.Text = "35"; this.DIQ35.TextAlign = ContentAlignment.TopLeft; this.DIQ35.UseVisualStyleBackColor = true; this.DIQ35.Click += new EventHandler(this.DIQ35_Click); this.DIQ17.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ17.FlatAppearance.BorderSize = 2; this.DIQ17.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ17.FlatStyle = FlatStyle.Flat; this.DIQ17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ17.ForeColor = SystemColors.ActiveCaptionText; this.DIQ17.Location = new Point(0x3d, 150); this.DIQ17.Name = "DIQ17"; this.DIQ17.Size = new Size(40, 40); this.DIQ17.TabIndex = 0x84; this.DIQ17.Text = "17"; this.DIQ17.TextAlign = ContentAlignment.TopLeft; this.DIQ17.UseVisualStyleBackColor = true; this.DIQ17.Click += new EventHandler(this.DIQ17_Click); this.DIQ34.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ34.FlatAppearance.BorderSize = 2; this.DIQ34.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ34.FlatStyle = FlatStyle.Flat; this.DIQ34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ34.ForeColor = SystemColors.ActiveCaptionText; this.DIQ34.Location = new Point(0x99, 0x120); this.DIQ34.Name = "DIQ34"; this.DIQ34.Size = new Size(40, 40); this.DIQ34.TabIndex = 0x95; this.DIQ34.Text = "34"; this.DIQ34.TextAlign = ContentAlignment.TopLeft; this.DIQ34.UseVisualStyleBackColor = true; this.DIQ34.Click += new EventHandler(this.DIQ34_Click); this.DIQ18.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ18.FlatAppearance.BorderSize = 2; this.DIQ18.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ18.FlatStyle = FlatStyle.Flat; this.DIQ18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ18.ForeColor = SystemColors.ActiveCaptionText; this.DIQ18.Location = new Point(0x6b, 150); this.DIQ18.Name = "DIQ18"; this.DIQ18.Size = new Size(40, 40); this.DIQ18.TabIndex = 0x85; this.DIQ18.Text = "18"; this.DIQ18.TextAlign = ContentAlignment.TopLeft; this.DIQ18.UseVisualStyleBackColor = true; this.DIQ18.Click += new EventHandler(this.DIQ18_Click); this.DIQ33.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ33.FlatAppearance.BorderSize = 2; this.DIQ33.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ33.FlatStyle = FlatStyle.Flat; this.DIQ33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ33.ForeColor = SystemColors.ActiveCaptionText; this.DIQ33.Location = new Point(0x6b, 0x120); this.DIQ33.Name = "DIQ33"; this.DIQ33.Size = new Size(40, 40); this.DIQ33.TabIndex = 0x94; this.DIQ33.Text = "33"; this.DIQ33.TextAlign = ContentAlignment.TopLeft; this.DIQ33.UseVisualStyleBackColor = true; this.DIQ33.Click += new EventHandler(this.DIQ33_Click); this.DIQ19.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ19.FlatAppearance.BorderSize = 2; this.DIQ19.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ19.FlatStyle = FlatStyle.Flat; this.DIQ19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ19.ForeColor = SystemColors.ActiveCaptionText; this.DIQ19.Location = new Point(0x99, 150); this.DIQ19.Name = "DIQ19"; this.DIQ19.Size = new Size(40, 40); this.DIQ19.TabIndex = 0x86; this.DIQ19.Text = "19"; this.DIQ19.TextAlign = ContentAlignment.TopLeft; this.DIQ19.UseVisualStyleBackColor = true; this.DIQ19.Click += new EventHandler(this.DIQ19_Click); this.DIQ32.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ32.FlatAppearance.BorderSize = 2; this.DIQ32.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ32.FlatStyle = FlatStyle.Flat; this.DIQ32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ32.ForeColor = SystemColors.ActiveCaptionText; this.DIQ32.Location = new Point(0x3d, 0x120); this.DIQ32.Name = "DIQ32"; this.DIQ32.Size = new Size(40, 40); this.DIQ32.TabIndex = 0x93; this.DIQ32.Text = "32"; this.DIQ32.TextAlign = ContentAlignment.TopLeft; this.DIQ32.UseVisualStyleBackColor = true; this.DIQ32.Click += new EventHandler(this.DIQ32_Click); this.DIQ20.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ20.FlatAppearance.BorderSize = 2; this.DIQ20.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ20.FlatStyle = FlatStyle.Flat; this.DIQ20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ20.ForeColor = SystemColors.ActiveCaptionText; this.DIQ20.Location = new Point(0xc6, 150); this.DIQ20.Name = "DIQ20"; this.DIQ20.Size = new Size(40, 40); this.DIQ20.TabIndex = 0x87; this.DIQ20.Text = "20"; this.DIQ20.TextAlign = ContentAlignment.TopLeft; this.DIQ20.UseVisualStyleBackColor = true; this.DIQ20.Click += new EventHandler(this.DIQ20_Click); this.DIQ31.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ31.FlatAppearance.BorderSize = 2; this.DIQ31.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ31.FlatStyle = FlatStyle.Flat; this.DIQ31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ31.ForeColor = SystemColors.ActiveCaptionText; this.DIQ31.Location = new Point(15, 0x120); this.DIQ31.Name = "DIQ31"; this.DIQ31.Size = new Size(40, 40); this.DIQ31.TabIndex = 0x92; this.DIQ31.Text = "31"; this.DIQ31.TextAlign = ContentAlignment.TopLeft; this.DIQ31.UseVisualStyleBackColor = true; this.DIQ31.Click += new EventHandler(this.DIQ31_Click); this.DIQ21.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ21.FlatAppearance.BorderSize = 2; this.DIQ21.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.DIQ21.FlatStyle = FlatStyle.Flat; this.DIQ21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ21.ForeColor = SystemColors.ActiveCaptionText; this.DIQ21.Location = new Point(15, 0xc4); this.DIQ21.Name = "DIQ21"; this.DIQ21.Size = new Size(40, 40); this.DIQ21.TabIndex = 0x88; this.DIQ21.Text = "21"; this.DIQ21.TextAlign = ContentAlignment.TopLeft; this.DIQ21.UseVisualStyleBackColor = true; this.DIQ21.Click += new EventHandler(this.DIQ21_Click); this.DIQ30.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ30.FlatAppearance.BorderSize = 2; this.DIQ30.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ30.FlatStyle = FlatStyle.Flat; this.DIQ30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ30.ForeColor = SystemColors.ActiveCaptionText; this.DIQ30.Location = new Point(0xc6, 0xf2); this.DIQ30.Name = "DIQ30"; this.DIQ30.Size = new Size(40, 40); this.DIQ30.TabIndex = 0x91; this.DIQ30.Text = "30"; this.DIQ30.TextAlign = ContentAlignment.TopLeft; this.DIQ30.UseVisualStyleBackColor = true; this.DIQ30.Click += new EventHandler(this.DIQ30_Click); this.DIQ22.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ22.FlatAppearance.BorderSize = 2; this.DIQ22.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ22.FlatStyle = FlatStyle.Flat; this.DIQ22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ22.ForeColor = SystemColors.ActiveCaptionText; this.DIQ22.Location = new Point(0x3d, 0xc4); this.DIQ22.Name = "DIQ22"; this.DIQ22.Size = new Size(40, 40); this.DIQ22.TabIndex = 0x89; this.DIQ22.Text = "22"; this.DIQ22.TextAlign = ContentAlignment.TopLeft; this.DIQ22.UseVisualStyleBackColor = true; this.DIQ22.Click += new EventHandler(this.DIQ22_Click); this.DIQ29.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ29.FlatAppearance.BorderSize = 2; this.DIQ29.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ29.FlatStyle = FlatStyle.Flat; this.DIQ29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ29.ForeColor = SystemColors.ActiveCaptionText; this.DIQ29.Location = new Point(0x99, 0xf2); this.DIQ29.Name = "DIQ29"; this.DIQ29.Size = new Size(40, 40); this.DIQ29.TabIndex = 0x90; this.DIQ29.Text = "29"; this.DIQ29.TextAlign = ContentAlignment.TopLeft; this.DIQ29.UseVisualStyleBackColor = true; this.DIQ29.Click += new EventHandler(this.DIQ29_Click); this.DIQ23.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ23.FlatAppearance.BorderSize = 2; this.DIQ23.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ23.FlatStyle = FlatStyle.Flat; this.DIQ23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ23.ForeColor = SystemColors.ActiveCaptionText; this.DIQ23.Location = new Point(0x6b, 0xc4); this.DIQ23.Name = "DIQ23"; this.DIQ23.Size = new Size(40, 40); this.DIQ23.TabIndex = 0x8a; this.DIQ23.Text = "23"; this.DIQ23.TextAlign = ContentAlignment.TopLeft; this.DIQ23.UseVisualStyleBackColor = true; this.DIQ23.Click += new EventHandler(this.DIQ23_Click); this.DIQ28.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ28.FlatAppearance.BorderSize = 2; this.DIQ28.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ28.FlatStyle = FlatStyle.Flat; this.DIQ28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ28.ForeColor = SystemColors.ActiveCaptionText; this.DIQ28.Location = new Point(0x6b, 0xf2); this.DIQ28.Name = "DIQ28"; this.DIQ28.Size = new Size(40, 40); this.DIQ28.TabIndex = 0x8f; this.DIQ28.Text = "28"; this.DIQ28.TextAlign = ContentAlignment.TopLeft; this.DIQ28.UseVisualStyleBackColor = true; this.DIQ28.Click += new EventHandler(this.DIQ28_Click); this.DIQ24.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ24.FlatAppearance.BorderSize = 2; this.DIQ24.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ24.FlatStyle = FlatStyle.Flat; this.DIQ24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ24.ForeColor = SystemColors.ActiveCaptionText; this.DIQ24.Location = new Point(0x99, 0xc4); this.DIQ24.Name = "DIQ24"; this.DIQ24.Size = new Size(40, 40); this.DIQ24.TabIndex = 0x8b; this.DIQ24.Text = "24"; this.DIQ24.TextAlign = ContentAlignment.TopLeft; this.DIQ24.UseVisualStyleBackColor = true; this.DIQ24.Click += new EventHandler(this.DIQ24_Click); this.DIQ27.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ27.FlatAppearance.BorderSize = 2; this.DIQ27.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ27.FlatStyle = FlatStyle.Flat; this.DIQ27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ27.ForeColor = SystemColors.ActiveCaptionText; this.DIQ27.Location = new Point(0x3d, 0xf2); this.DIQ27.Name = "DIQ27"; this.DIQ27.Size = new Size(40, 40); this.DIQ27.TabIndex = 0x8e; this.DIQ27.Text = "27"; this.DIQ27.TextAlign = ContentAlignment.TopLeft; this.DIQ27.UseVisualStyleBackColor = true; this.DIQ27.Click += new EventHandler(this.DIQ27_Click); this.DIQ25.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ25.FlatAppearance.BorderSize = 2; this.DIQ25.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ25.FlatStyle = FlatStyle.Flat; this.DIQ25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ25.ForeColor = SystemColors.ActiveCaptionText; this.DIQ25.Location = new Point(0xc6, 0xc4); this.DIQ25.Name = "DIQ25"; this.DIQ25.Size = new Size(40, 40); this.DIQ25.TabIndex = 140; this.DIQ25.Text = "25"; this.DIQ25.TextAlign = ContentAlignment.TopLeft; this.DIQ25.UseVisualStyleBackColor = true; this.DIQ25.Click += new EventHandler(this.DIQ25_Click); this.DIQ26.BackgroundImageLayout = ImageLayout.Stretch; this.DIQ26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.DIQ26.FlatAppearance.BorderSize = 2; this.DIQ26.FlatAppearance.CheckedBackColor = Color.Black; this.DIQ26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.DIQ26.FlatStyle = FlatStyle.Flat; this.DIQ26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.DIQ26.ForeColor = SystemColors.ActiveCaptionText; this.DIQ26.Location = new Point(15, 0xf2); this.DIQ26.Name = "DIQ26"; this.DIQ26.Size = new Size(40, 40); this.DIQ26.TabIndex = 0x8d; this.DIQ26.Text = "26"; this.DIQ26.TextAlign = ContentAlignment.TopLeft; this.DIQ26.UseVisualStyleBackColor = true; this.DIQ26.Click += new EventHandler(this.DIQ26_Click); this.label1.AutoSize = true; this.label1.Location = new Point(3, 7); this.label1.Name = "label1"; this.label1.Size = new Size(0x3a, 13); this.label1.TabIndex = 0x48; this.label1.Text = "Question 1"; this.ENGtab.Controls.Add(this.markandnextENG); this.ENGtab.Controls.Add(this.panel14); this.ENGtab.Controls.Add(this.label4); this.ENGtab.Controls.Add(this.savennextENG); this.ENGtab.Controls.Add(this.panel6); this.ENGtab.Controls.Add(this.ref4EN); this.ENGtab.Controls.Add(this.panel4); this.ENGtab.Controls.Add(this.sec1); this.ENGtab.Controls.Add(this.panel18); this.ENGtab.HorizontalScrollbarBarColor = true; this.ENGtab.HorizontalScrollbarHighlightOnWheel = false; this.ENGtab.HorizontalScrollbarSize = 30; this.ENGtab.Location = new Point(4, 0x23); this.ENGtab.Name = "ENGtab"; this.ENGtab.Size = new Size(0x3f8, 0x2d9); this.ENGtab.Style = MetroColorStyle.Green; this.ENGtab.TabIndex = 0; this.ENGtab.Text = "English"; this.ENGtab.Theme = MetroThemeStyle.Light; this.ENGtab.VerticalScrollbarBarColor = true; this.ENGtab.VerticalScrollbarHighlightOnWheel = false; this.ENGtab.VerticalScrollbarSize = 10; this.panel18.BackColor = Color.Transparent; this.panel18.Controls.Add(this.textBox3); this.panel18.Controls.Add(this.engchkans); this.panel18.Controls.Add(this.metroLabel9); this.panel18.Controls.Add(this.ans4EN); this.panel18.Controls.Add(this.metroLabel10); this.panel18.Controls.Add(this.secnameENG); this.panel18.Controls.Add(this.metroLabel11); this.panel18.Controls.Add(this.metroLabel12); this.panel18.Location = new Point(0x369, 6); this.panel18.Name = "panel18"; this.panel18.Size = new Size(0x90, 270); this.panel18.TabIndex = 100; this.panel18.Visible = false; this.textBox3.Location = new Point(0x15, 0x21); this.textBox3.Multiline = true; this.textBox3.Name = "textBox3"; this.textBox3.Size = new Size(0x18, 0x1b); this.textBox3.TabIndex = 0x54; this.textBox3.Text = "1"; this.engchkans.Location = new Point(0x15, 0x42); this.engchkans.Name = "engchkans"; this.engchkans.Size = new Size(40, 20); this.engchkans.TabIndex = 0x53; this.metroLabel9.AutoSize = true; this.metroLabel9.FontWeight = MetroLabelWeight.Bold; this.metroLabel9.Location = new Point(0x27, 0xcc); this.metroLabel9.Name = "metroLabel9"; this.metroLabel9.Size = new Size(0x3d, 0x13); this.metroLabel9.Style = MetroColorStyle.Black; this.metroLabel9.TabIndex = 0x17; this.metroLabel9.Text = "option4"; this.metroLabel9.Theme = MetroThemeStyle.Light; this.metroLabel9.UseStyleColors = true; this.ans4EN.Location = new Point(0x49, 0x42); this.ans4EN.Name = "ans4EN"; this.ans4EN.Size = new Size(40, 20); this.ans4EN.TabIndex = 0x5d; this.metroLabel10.AutoSize = true; this.metroLabel10.FontWeight = MetroLabelWeight.Bold; this.metroLabel10.Location = new Point(0x27, 0xb0); this.metroLabel10.Name = "metroLabel10"; this.metroLabel10.Size = new Size(0x3d, 0x13); this.metroLabel10.Style = MetroColorStyle.Black; this.metroLabel10.TabIndex = 0x18; this.metroLabel10.Text = "option3"; this.metroLabel10.Theme = MetroThemeStyle.Light; this.metroLabel10.UseStyleColors = true; this.secnameENG.AutoSize = true; this.secnameENG.Location = new Point(70, 0x21); this.secnameENG.Name = "secnameENG"; this.secnameENG.Size = new Size(30, 13); this.secnameENG.TabIndex = 0x61; this.secnameENG.Text = "ENQ"; this.metroLabel11.AutoSize = true; this.metroLabel11.FontWeight = MetroLabelWeight.Bold; this.metroLabel11.Location = new Point(0x27, 0x9d); this.metroLabel11.Name = "metroLabel11"; this.metroLabel11.Size = new Size(0x3d, 0x13); this.metroLabel11.Style = MetroColorStyle.Black; this.metroLabel11.TabIndex = 0x19; this.metroLabel11.Text = "option2"; this.metroLabel11.Theme = MetroThemeStyle.Light; this.metroLabel11.UseStyleColors = true; this.metroLabel12.AutoSize = true; this.metroLabel12.FontWeight = MetroLabelWeight.Bold; this.metroLabel12.Location = new Point(0x27, 0x81); this.metroLabel12.Name = "metroLabel12"; this.metroLabel12.Size = new Size(0x3d, 0x13); this.metroLabel12.Style = MetroColorStyle.Black; this.metroLabel12.TabIndex = 0x1a; this.metroLabel12.Text = "option1"; this.metroLabel12.Theme = MetroThemeStyle.Light; this.metroLabel12.UseStyleColors = true; this.markandnextENG.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextENG.Location = new Point(0x2f5, 0x196); this.markandnextENG.Name = "markandnextENG"; this.markandnextENG.Size = new Size(0x79, 0x2d); this.markandnextENG.Style = MetroColorStyle.Blue; this.markandnextENG.TabIndex = 0x63; this.markandnextENG.Text = "Mark and Next"; this.markandnextENG.Theme = MetroThemeStyle.Light; this.markandnextENG.UseSelectable = true; this.markandnextENG.Click += new EventHandler(this.metroButton3_Click); this.panel14.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel14.BackColor = SystemColors.InactiveCaptionText; this.panel14.Controls.Add(this.metroLabel29); this.panel14.Controls.Add(this.pictureBox6); this.panel14.Controls.Add(this.metroLabel30); this.panel14.Controls.Add(this.metroLabel31); this.panel14.Controls.Add(this.metroLabel32); this.panel14.Controls.Add(this.pictureBox7); this.panel14.Controls.Add(this.pictureBox8); this.panel14.Controls.Add(this.pictureBox9); this.panel14.Location = new Point(0x2f5, 0x1c6); this.panel14.Name = "panel14"; this.panel14.Size = new Size(0x10b, 0xb2); this.panel14.TabIndex = 0x62; this.metroLabel29.AutoSize = true; this.metroLabel29.BackColor = Color.Transparent; this.metroLabel29.FontWeight = MetroLabelWeight.Bold; this.metroLabel29.Location = new Point(0x3b, 0x94); this.metroLabel29.Name = "metroLabel29"; this.metroLabel29.Size = new Size(0x8b, 0x13); this.metroLabel29.Style = MetroColorStyle.Purple; this.metroLabel29.TabIndex = 0x65; this.metroLabel29.Text = "Marked For Review"; this.metroLabel29.Theme = MetroThemeStyle.Dark; this.metroLabel29.UseCustomBackColor = true; this.metroLabel29.UseStyleColors = true; this.pictureBox6.BackColor = Color.White; this.pictureBox6.Image = Resources.rvw; this.pictureBox6.Location = new Point(3, 0x8f); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new Size(30, 30); this.pictureBox6.TabIndex = 100; this.pictureBox6.TabStop = false; this.metroLabel30.AutoSize = true; this.metroLabel30.BackColor = Color.Transparent; this.metroLabel30.FontWeight = MetroLabelWeight.Bold; this.metroLabel30.Location = new Point(60, 0x63); this.metroLabel30.Name = "metroLabel30"; this.metroLabel30.Size = new Size(0x53, 0x13); this.metroLabel30.Style = MetroColorStyle.White; this.metroLabel30.TabIndex = 0x63; this.metroLabel30.Text = "Not Visited"; this.metroLabel30.Theme = MetroThemeStyle.Dark; this.metroLabel30.UseCustomBackColor = true; this.metroLabel30.UseStyleColors = true; this.metroLabel31.AutoSize = true; this.metroLabel31.BackColor = Color.Transparent; this.metroLabel31.FontWeight = MetroLabelWeight.Bold; this.metroLabel31.Location = new Point(60, 0x35); this.metroLabel31.Name = "metroLabel31"; this.metroLabel31.Size = new Size(0x68, 0x13); this.metroLabel31.Style = MetroColorStyle.Red; this.metroLabel31.TabIndex = 0x62; this.metroLabel31.Text = "Not Answered"; this.metroLabel31.Theme = MetroThemeStyle.Dark; this.metroLabel31.UseCustomBackColor = true; this.metroLabel31.UseStyleColors = true; this.metroLabel32.AutoSize = true; this.metroLabel32.BackColor = Color.Transparent; this.metroLabel32.FontWeight = MetroLabelWeight.Bold; this.metroLabel32.Location = new Point(60, 7); this.metroLabel32.Name = "metroLabel32"; this.metroLabel32.Size = new Size(0x4b, 0x13); this.metroLabel32.Style = MetroColorStyle.Green; this.metroLabel32.TabIndex = 0x5f; this.metroLabel32.Text = "Answered"; this.metroLabel32.Theme = MetroThemeStyle.Dark; this.metroLabel32.UseCustomBackColor = true; this.metroLabel32.UseStyleColors = true; this.pictureBox7.BackColor = Color.White; this.pictureBox7.Location = new Point(3, 0x5f); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new Size(30, 30); this.pictureBox7.TabIndex = 0x61; this.pictureBox7.TabStop = false; this.pictureBox8.Image = Resources.unchk; this.pictureBox8.Location = new Point(3, 0x31); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new Size(30, 30); this.pictureBox8.TabIndex = 0x60; this.pictureBox8.TabStop = false; this.pictureBox9.Image = Resources.chk1; this.pictureBox9.Location = new Point(3, 3); this.pictureBox9.Name = "pictureBox9"; this.pictureBox9.Size = new Size(30, 30); this.pictureBox9.TabIndex = 0x5f; this.pictureBox9.TabStop = false; this.label4.AutoSize = true; this.label4.Location = new Point(10, 6); this.label4.Name = "label4"; this.label4.Size = new Size(0x3a, 13); this.label4.TabIndex = 0x55; this.label4.Text = "Question 1"; this.savennextENG.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextENG.Location = new Point(0x374, 0x196); this.savennextENG.Name = "savennextENG"; this.savennextENG.Size = new Size(0x8a, 0x2d); this.savennextENG.Style = MetroColorStyle.Blue; this.savennextENG.TabIndex = 0x52; this.savennextENG.Text = "Save and Next"; this.savennextENG.Theme = MetroThemeStyle.Light; this.savennextENG.UseSelectable = true; this.savennextENG.Click += new EventHandler(this.metroButton2_Click); this.panel6.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel6.AutoScroll = true; this.panel6.BackColor = Color.Transparent; this.panel6.BorderStyle = BorderStyle.FixedSingle; this.panel6.Controls.Add(this.ENQ1); this.panel6.Controls.Add(this.ENQ50); this.panel6.Controls.Add(this.ENQ2); this.panel6.Controls.Add(this.ENQ49); this.panel6.Controls.Add(this.ENQ3); this.panel6.Controls.Add(this.ENQ48); this.panel6.Controls.Add(this.ENQ4); this.panel6.Controls.Add(this.ENQ47); this.panel6.Controls.Add(this.ENQ5); this.panel6.Controls.Add(this.ENQ46); this.panel6.Controls.Add(this.ENQ6); this.panel6.Controls.Add(this.ENQ45); this.panel6.Controls.Add(this.ENQ7); this.panel6.Controls.Add(this.ENQ44); this.panel6.Controls.Add(this.ENQ8); this.panel6.Controls.Add(this.ENQ43); this.panel6.Controls.Add(this.ENQ9); this.panel6.Controls.Add(this.ENQ42); this.panel6.Controls.Add(this.ENQ10); this.panel6.Controls.Add(this.ENQ41); this.panel6.Controls.Add(this.ENQ11); this.panel6.Controls.Add(this.ENQ40); this.panel6.Controls.Add(this.ENQ12); this.panel6.Controls.Add(this.ENQ39); this.panel6.Controls.Add(this.ENQ13); this.panel6.Controls.Add(this.ENQ38); this.panel6.Controls.Add(this.ENQ14); this.panel6.Controls.Add(this.ENQ37); this.panel6.Controls.Add(this.ENQ15); this.panel6.Controls.Add(this.ENQ36); this.panel6.Controls.Add(this.ENQ16); this.panel6.Controls.Add(this.ENQ35); this.panel6.Controls.Add(this.ENQ17); this.panel6.Controls.Add(this.ENQ34); this.panel6.Controls.Add(this.ENQ18); this.panel6.Controls.Add(this.ENQ33); this.panel6.Controls.Add(this.ENQ19); this.panel6.Controls.Add(this.ENQ32); this.panel6.Controls.Add(this.ENQ20); this.panel6.Controls.Add(this.ENQ31); this.panel6.Controls.Add(this.ENQ21); this.panel6.Controls.Add(this.ENQ30); this.panel6.Controls.Add(this.ENQ22); this.panel6.Controls.Add(this.ENQ29); this.panel6.Controls.Add(this.ENQ23); this.panel6.Controls.Add(this.ENQ28); this.panel6.Controls.Add(this.ENQ24); this.panel6.Controls.Add(this.ENQ27); this.panel6.Controls.Add(this.ENQ25); this.panel6.Controls.Add(this.ENQ26); this.panel6.Location = new Point(0x2f5, 3); this.panel6.Name = "panel6"; this.panel6.Size = new Size(0x109, 0x18f); this.panel6.TabIndex = 0x51; this.ENQ1.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ1.FlatAppearance.BorderSize = 2; this.ENQ1.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ1.FlatStyle = FlatStyle.Flat; this.ENQ1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ1.ForeColor = SystemColors.ActiveCaptionText; this.ENQ1.Location = new Point(15, 14); this.ENQ1.Name = "ENQ1"; this.ENQ1.Size = new Size(40, 40); this.ENQ1.TabIndex = 0x74; this.ENQ1.Text = "1"; this.ENQ1.TextAlign = ContentAlignment.TopLeft; this.ENQ1.UseVisualStyleBackColor = true; this.ENQ1.Click += new EventHandler(this.ENQ1_Click); this.ENQ50.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ50.FlatAppearance.BorderSize = 2; this.ENQ50.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ50.FlatStyle = FlatStyle.Flat; this.ENQ50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ50.ForeColor = SystemColors.ActiveCaptionText; this.ENQ50.Location = new Point(0xc6, 0x1ac); this.ENQ50.Name = "ENQ50"; this.ENQ50.Size = new Size(40, 40); this.ENQ50.TabIndex = 0xa5; this.ENQ50.Text = "50"; this.ENQ50.TextAlign = ContentAlignment.TopLeft; this.ENQ50.UseVisualStyleBackColor = true; this.ENQ50.Visible = false; this.ENQ50.Click += new EventHandler(this.button3_Click); this.ENQ2.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ2.FlatAppearance.BorderSize = 2; this.ENQ2.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ2.FlatStyle = FlatStyle.Flat; this.ENQ2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ2.ForeColor = SystemColors.ActiveCaptionText; this.ENQ2.Location = new Point(0x3d, 14); this.ENQ2.Name = "ENQ2"; this.ENQ2.Size = new Size(40, 40); this.ENQ2.TabIndex = 0x75; this.ENQ2.Text = "2"; this.ENQ2.TextAlign = ContentAlignment.TopLeft; this.ENQ2.UseVisualStyleBackColor = true; this.ENQ2.Click += new EventHandler(this.ENQ2_Click); this.ENQ49.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ49.FlatAppearance.BorderSize = 2; this.ENQ49.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ49.FlatStyle = FlatStyle.Flat; this.ENQ49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ49.ForeColor = SystemColors.ActiveCaptionText; this.ENQ49.Location = new Point(0x99, 0x1ac); this.ENQ49.Name = "ENQ49"; this.ENQ49.Size = new Size(40, 40); this.ENQ49.TabIndex = 0xa4; this.ENQ49.Text = "49"; this.ENQ49.TextAlign = ContentAlignment.TopLeft; this.ENQ49.UseVisualStyleBackColor = true; this.ENQ49.Visible = false; this.ENQ49.Click += new EventHandler(this.button5_Click); this.ENQ3.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ3.FlatAppearance.BorderSize = 2; this.ENQ3.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ3.FlatStyle = FlatStyle.Flat; this.ENQ3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ3.ForeColor = SystemColors.ActiveCaptionText; this.ENQ3.Location = new Point(0x6b, 14); this.ENQ3.Name = "ENQ3"; this.ENQ3.Size = new Size(40, 40); this.ENQ3.TabIndex = 0x76; this.ENQ3.Text = "3"; this.ENQ3.TextAlign = ContentAlignment.TopLeft; this.ENQ3.UseVisualStyleBackColor = true; this.ENQ3.Click += new EventHandler(this.ENQ3_Click); this.ENQ48.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ48.FlatAppearance.BorderSize = 2; this.ENQ48.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ48.FlatStyle = FlatStyle.Flat; this.ENQ48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ48.ForeColor = SystemColors.ActiveCaptionText; this.ENQ48.Location = new Point(0x6b, 0x1ac); this.ENQ48.Name = "ENQ48"; this.ENQ48.Size = new Size(40, 40); this.ENQ48.TabIndex = 0xa3; this.ENQ48.Text = "48"; this.ENQ48.TextAlign = ContentAlignment.TopLeft; this.ENQ48.UseVisualStyleBackColor = true; this.ENQ48.Visible = false; this.ENQ48.Click += new EventHandler(this.button7_Click); this.ENQ4.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ4.FlatAppearance.BorderSize = 2; this.ENQ4.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ4.FlatStyle = FlatStyle.Flat; this.ENQ4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ4.ForeColor = SystemColors.ActiveCaptionText; this.ENQ4.Location = new Point(0x99, 14); this.ENQ4.Name = "ENQ4"; this.ENQ4.Size = new Size(40, 40); this.ENQ4.TabIndex = 0x77; this.ENQ4.Text = "4"; this.ENQ4.TextAlign = ContentAlignment.TopLeft; this.ENQ4.UseVisualStyleBackColor = true; this.ENQ4.Click += new EventHandler(this.button8_Click); this.ENQ47.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ47.FlatAppearance.BorderSize = 2; this.ENQ47.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ47.FlatStyle = FlatStyle.Flat; this.ENQ47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ47.ForeColor = SystemColors.ActiveCaptionText; this.ENQ47.Location = new Point(0x3d, 0x1ac); this.ENQ47.Name = "ENQ47"; this.ENQ47.Size = new Size(40, 40); this.ENQ47.TabIndex = 0xa2; this.ENQ47.Text = "47"; this.ENQ47.TextAlign = ContentAlignment.TopLeft; this.ENQ47.UseVisualStyleBackColor = true; this.ENQ47.Visible = false; this.ENQ47.Click += new EventHandler(this.button9_Click); this.ENQ5.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ5.FlatAppearance.BorderSize = 2; this.ENQ5.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ5.FlatStyle = FlatStyle.Flat; this.ENQ5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ5.ForeColor = SystemColors.ActiveCaptionText; this.ENQ5.Location = new Point(0xc6, 14); this.ENQ5.Name = "ENQ5"; this.ENQ5.Size = new Size(40, 40); this.ENQ5.TabIndex = 120; this.ENQ5.Text = "5"; this.ENQ5.TextAlign = ContentAlignment.TopLeft; this.ENQ5.UseVisualStyleBackColor = true; this.ENQ5.Click += new EventHandler(this.button10_Click); this.ENQ46.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ46.FlatAppearance.BorderSize = 2; this.ENQ46.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ46.FlatStyle = FlatStyle.Flat; this.ENQ46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ46.ForeColor = SystemColors.ActiveCaptionText; this.ENQ46.Location = new Point(15, 0x1ac); this.ENQ46.Name = "ENQ46"; this.ENQ46.Size = new Size(40, 40); this.ENQ46.TabIndex = 0xa1; this.ENQ46.Text = "46"; this.ENQ46.TextAlign = ContentAlignment.TopLeft; this.ENQ46.UseVisualStyleBackColor = true; this.ENQ46.Visible = false; this.ENQ46.Click += new EventHandler(this.button11_Click); this.ENQ6.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ6.FlatAppearance.BorderSize = 2; this.ENQ6.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ6.FlatStyle = FlatStyle.Flat; this.ENQ6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ6.ForeColor = SystemColors.ActiveCaptionText; this.ENQ6.Location = new Point(15, 60); this.ENQ6.Name = "ENQ6"; this.ENQ6.Size = new Size(40, 40); this.ENQ6.TabIndex = 0x79; this.ENQ6.Text = "6"; this.ENQ6.TextAlign = ContentAlignment.TopLeft; this.ENQ6.UseVisualStyleBackColor = true; this.ENQ6.Click += new EventHandler(this.button12_Click); this.ENQ45.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ45.FlatAppearance.BorderSize = 2; this.ENQ45.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ45.FlatStyle = FlatStyle.Flat; this.ENQ45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ45.ForeColor = SystemColors.ActiveCaptionText; this.ENQ45.Location = new Point(0xc6, 0x17e); this.ENQ45.Name = "ENQ45"; this.ENQ45.Size = new Size(40, 40); this.ENQ45.TabIndex = 160; this.ENQ45.Text = "45"; this.ENQ45.TextAlign = ContentAlignment.TopLeft; this.ENQ45.UseVisualStyleBackColor = true; this.ENQ45.Visible = false; this.ENQ45.Click += new EventHandler(this.button13_Click); this.ENQ7.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ7.FlatAppearance.BorderSize = 2; this.ENQ7.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ7.FlatStyle = FlatStyle.Flat; this.ENQ7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ7.ForeColor = SystemColors.ActiveCaptionText; this.ENQ7.Location = new Point(0x3d, 60); this.ENQ7.Name = "ENQ7"; this.ENQ7.Size = new Size(40, 40); this.ENQ7.TabIndex = 0x7a; this.ENQ7.Text = "7"; this.ENQ7.TextAlign = ContentAlignment.TopLeft; this.ENQ7.UseVisualStyleBackColor = true; this.ENQ7.Click += new EventHandler(this.button14_Click); this.ENQ44.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ44.FlatAppearance.BorderSize = 2; this.ENQ44.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ44.FlatStyle = FlatStyle.Flat; this.ENQ44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ44.ForeColor = SystemColors.ActiveCaptionText; this.ENQ44.Location = new Point(0x99, 0x17e); this.ENQ44.Name = "ENQ44"; this.ENQ44.Size = new Size(40, 40); this.ENQ44.TabIndex = 0x9f; this.ENQ44.Text = "44"; this.ENQ44.TextAlign = ContentAlignment.TopLeft; this.ENQ44.UseVisualStyleBackColor = true; this.ENQ44.Visible = false; this.ENQ44.Click += new EventHandler(this.button15_Click_1); this.ENQ8.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ8.FlatAppearance.BorderSize = 2; this.ENQ8.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ8.FlatStyle = FlatStyle.Flat; this.ENQ8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ8.ForeColor = SystemColors.ActiveCaptionText; this.ENQ8.Location = new Point(0x6b, 60); this.ENQ8.Name = "ENQ8"; this.ENQ8.Size = new Size(40, 40); this.ENQ8.TabIndex = 0x7b; this.ENQ8.Text = "8"; this.ENQ8.TextAlign = ContentAlignment.TopLeft; this.ENQ8.UseVisualStyleBackColor = true; this.ENQ8.Click += new EventHandler(this.button16_Click_1); this.ENQ43.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ43.FlatAppearance.BorderSize = 2; this.ENQ43.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ43.FlatStyle = FlatStyle.Flat; this.ENQ43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ43.ForeColor = SystemColors.ActiveCaptionText; this.ENQ43.Location = new Point(0x6b, 0x17e); this.ENQ43.Name = "ENQ43"; this.ENQ43.Size = new Size(40, 40); this.ENQ43.TabIndex = 0x9e; this.ENQ43.Text = "43"; this.ENQ43.TextAlign = ContentAlignment.TopLeft; this.ENQ43.UseVisualStyleBackColor = true; this.ENQ43.Visible = false; this.ENQ43.Click += new EventHandler(this.button17_Click_1); this.ENQ9.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ9.FlatAppearance.BorderSize = 2; this.ENQ9.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ9.FlatStyle = FlatStyle.Flat; this.ENQ9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ9.ForeColor = SystemColors.ActiveCaptionText; this.ENQ9.Location = new Point(0x99, 60); this.ENQ9.Name = "ENQ9"; this.ENQ9.Size = new Size(40, 40); this.ENQ9.TabIndex = 0x7c; this.ENQ9.Text = "9"; this.ENQ9.TextAlign = ContentAlignment.TopLeft; this.ENQ9.UseVisualStyleBackColor = true; this.ENQ9.Click += new EventHandler(this.button18_Click_1); this.ENQ42.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ42.FlatAppearance.BorderSize = 2; this.ENQ42.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ42.FlatStyle = FlatStyle.Flat; this.ENQ42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ42.ForeColor = SystemColors.ActiveCaptionText; this.ENQ42.Location = new Point(0x3d, 0x17e); this.ENQ42.Name = "ENQ42"; this.ENQ42.Size = new Size(40, 40); this.ENQ42.TabIndex = 0x9d; this.ENQ42.Text = "42"; this.ENQ42.TextAlign = ContentAlignment.TopLeft; this.ENQ42.UseVisualStyleBackColor = true; this.ENQ42.Visible = false; this.ENQ42.Click += new EventHandler(this.button19_Click_1); this.ENQ10.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ10.FlatAppearance.BorderSize = 2; this.ENQ10.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ10.FlatStyle = FlatStyle.Flat; this.ENQ10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ10.ForeColor = SystemColors.ActiveCaptionText; this.ENQ10.Location = new Point(0xc6, 60); this.ENQ10.Name = "ENQ10"; this.ENQ10.Size = new Size(40, 40); this.ENQ10.TabIndex = 0x7d; this.ENQ10.Text = "10"; this.ENQ10.TextAlign = ContentAlignment.TopLeft; this.ENQ10.UseVisualStyleBackColor = true; this.ENQ10.Click += new EventHandler(this.button20_Click_1); this.ENQ41.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ41.FlatAppearance.BorderSize = 2; this.ENQ41.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ41.FlatStyle = FlatStyle.Flat; this.ENQ41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ41.ForeColor = SystemColors.ActiveCaptionText; this.ENQ41.Location = new Point(15, 0x17e); this.ENQ41.Name = "ENQ41"; this.ENQ41.Size = new Size(40, 40); this.ENQ41.TabIndex = 0x9c; this.ENQ41.Text = "41"; this.ENQ41.TextAlign = ContentAlignment.TopLeft; this.ENQ41.UseVisualStyleBackColor = true; this.ENQ41.Visible = false; this.ENQ41.Click += new EventHandler(this.button21_Click_1); this.ENQ11.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ11.FlatAppearance.BorderSize = 2; this.ENQ11.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ11.FlatStyle = FlatStyle.Flat; this.ENQ11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ11.ForeColor = SystemColors.ActiveCaptionText; this.ENQ11.Location = new Point(15, 0x6a); this.ENQ11.Name = "ENQ11"; this.ENQ11.Size = new Size(40, 40); this.ENQ11.TabIndex = 0x7e; this.ENQ11.Text = "11"; this.ENQ11.TextAlign = ContentAlignment.TopLeft; this.ENQ11.UseVisualStyleBackColor = true; this.ENQ11.Click += new EventHandler(this.button22_Click_1); this.ENQ40.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ40.FlatAppearance.BorderSize = 2; this.ENQ40.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ40.FlatStyle = FlatStyle.Flat; this.ENQ40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ40.ForeColor = SystemColors.ActiveCaptionText; this.ENQ40.Location = new Point(0xc6, 0x150); this.ENQ40.Name = "ENQ40"; this.ENQ40.Size = new Size(40, 40); this.ENQ40.TabIndex = 0x9b; this.ENQ40.Text = "40"; this.ENQ40.TextAlign = ContentAlignment.TopLeft; this.ENQ40.UseVisualStyleBackColor = true; this.ENQ40.Click += new EventHandler(this.button23_Click); this.ENQ12.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ12.FlatAppearance.BorderSize = 2; this.ENQ12.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ12.FlatStyle = FlatStyle.Flat; this.ENQ12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ12.ForeColor = SystemColors.ActiveCaptionText; this.ENQ12.Location = new Point(0x3d, 0x6a); this.ENQ12.Name = "ENQ12"; this.ENQ12.Size = new Size(40, 40); this.ENQ12.TabIndex = 0x7f; this.ENQ12.Text = "12"; this.ENQ12.TextAlign = ContentAlignment.TopLeft; this.ENQ12.UseVisualStyleBackColor = true; this.ENQ12.Click += new EventHandler(this.button24_Click); this.ENQ39.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ39.FlatAppearance.BorderSize = 2; this.ENQ39.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ39.FlatStyle = FlatStyle.Flat; this.ENQ39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ39.ForeColor = SystemColors.ActiveCaptionText; this.ENQ39.Location = new Point(0x99, 0x150); this.ENQ39.Name = "ENQ39"; this.ENQ39.Size = new Size(40, 40); this.ENQ39.TabIndex = 0x9a; this.ENQ39.Text = "39"; this.ENQ39.TextAlign = ContentAlignment.TopLeft; this.ENQ39.UseVisualStyleBackColor = true; this.ENQ39.Click += new EventHandler(this.button25_Click); this.ENQ13.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ13.FlatAppearance.BorderSize = 2; this.ENQ13.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ13.FlatStyle = FlatStyle.Flat; this.ENQ13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ13.ForeColor = SystemColors.ActiveCaptionText; this.ENQ13.Location = new Point(0x6b, 0x6a); this.ENQ13.Name = "ENQ13"; this.ENQ13.Size = new Size(40, 40); this.ENQ13.TabIndex = 0x80; this.ENQ13.Text = "13"; this.ENQ13.TextAlign = ContentAlignment.TopLeft; this.ENQ13.UseVisualStyleBackColor = true; this.ENQ13.Click += new EventHandler(this.button26_Click); this.ENQ38.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ38.FlatAppearance.BorderSize = 2; this.ENQ38.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ38.FlatStyle = FlatStyle.Flat; this.ENQ38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ38.ForeColor = SystemColors.ActiveCaptionText; this.ENQ38.Location = new Point(0x6b, 0x150); this.ENQ38.Name = "ENQ38"; this.ENQ38.Size = new Size(40, 40); this.ENQ38.TabIndex = 0x99; this.ENQ38.Text = "38"; this.ENQ38.TextAlign = ContentAlignment.TopLeft; this.ENQ38.UseVisualStyleBackColor = true; this.ENQ38.Click += new EventHandler(this.button27_Click); this.ENQ14.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ14.FlatAppearance.BorderSize = 2; this.ENQ14.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ14.FlatStyle = FlatStyle.Flat; this.ENQ14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ14.ForeColor = SystemColors.ActiveCaptionText; this.ENQ14.Location = new Point(0x99, 0x6a); this.ENQ14.Name = "ENQ14"; this.ENQ14.Size = new Size(40, 40); this.ENQ14.TabIndex = 0x81; this.ENQ14.Text = "14"; this.ENQ14.TextAlign = ContentAlignment.TopLeft; this.ENQ14.UseVisualStyleBackColor = true; this.ENQ14.Click += new EventHandler(this.button28_Click); this.ENQ37.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ37.FlatAppearance.BorderSize = 2; this.ENQ37.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ37.FlatStyle = FlatStyle.Flat; this.ENQ37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ37.ForeColor = SystemColors.ActiveCaptionText; this.ENQ37.Location = new Point(0x3d, 0x150); this.ENQ37.Name = "ENQ37"; this.ENQ37.Size = new Size(40, 40); this.ENQ37.TabIndex = 0x98; this.ENQ37.Text = "37"; this.ENQ37.TextAlign = ContentAlignment.TopLeft; this.ENQ37.UseVisualStyleBackColor = true; this.ENQ37.Click += new EventHandler(this.button29_Click); this.ENQ15.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ15.FlatAppearance.BorderSize = 2; this.ENQ15.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ15.FlatStyle = FlatStyle.Flat; this.ENQ15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ15.ForeColor = SystemColors.ActiveCaptionText; this.ENQ15.Location = new Point(0xc6, 0x6a); this.ENQ15.Name = "ENQ15"; this.ENQ15.Size = new Size(40, 40); this.ENQ15.TabIndex = 130; this.ENQ15.Text = "15"; this.ENQ15.TextAlign = ContentAlignment.TopLeft; this.ENQ15.UseVisualStyleBackColor = true; this.ENQ15.Click += new EventHandler(this.button30_Click); this.ENQ36.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ36.FlatAppearance.BorderSize = 2; this.ENQ36.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ36.FlatStyle = FlatStyle.Flat; this.ENQ36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ36.ForeColor = SystemColors.ActiveCaptionText; this.ENQ36.Location = new Point(15, 0x150); this.ENQ36.Name = "ENQ36"; this.ENQ36.Size = new Size(40, 40); this.ENQ36.TabIndex = 0x97; this.ENQ36.Text = "36"; this.ENQ36.TextAlign = ContentAlignment.TopLeft; this.ENQ36.UseVisualStyleBackColor = true; this.ENQ36.Click += new EventHandler(this.button31_Click); this.ENQ16.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ16.FlatAppearance.BorderSize = 2; this.ENQ16.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ16.FlatStyle = FlatStyle.Flat; this.ENQ16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ16.ForeColor = SystemColors.ActiveCaptionText; this.ENQ16.Location = new Point(15, 0x98); this.ENQ16.Name = "ENQ16"; this.ENQ16.Size = new Size(40, 40); this.ENQ16.TabIndex = 0x83; this.ENQ16.Text = "16"; this.ENQ16.TextAlign = ContentAlignment.TopLeft; this.ENQ16.UseVisualStyleBackColor = true; this.ENQ16.Click += new EventHandler(this.button32_Click); this.ENQ35.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ35.FlatAppearance.BorderSize = 2; this.ENQ35.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ35.FlatStyle = FlatStyle.Flat; this.ENQ35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ35.ForeColor = SystemColors.ActiveCaptionText; this.ENQ35.Location = new Point(0xc6, 290); this.ENQ35.Name = "ENQ35"; this.ENQ35.Size = new Size(40, 40); this.ENQ35.TabIndex = 150; this.ENQ35.Text = "35"; this.ENQ35.TextAlign = ContentAlignment.TopLeft; this.ENQ35.UseVisualStyleBackColor = true; this.ENQ35.Click += new EventHandler(this.button33_Click); this.ENQ17.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ17.FlatAppearance.BorderSize = 2; this.ENQ17.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ17.FlatStyle = FlatStyle.Flat; this.ENQ17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ17.ForeColor = SystemColors.ActiveCaptionText; this.ENQ17.Location = new Point(0x3d, 0x98); this.ENQ17.Name = "ENQ17"; this.ENQ17.Size = new Size(40, 40); this.ENQ17.TabIndex = 0x84; this.ENQ17.Text = "17"; this.ENQ17.TextAlign = ContentAlignment.TopLeft; this.ENQ17.UseVisualStyleBackColor = true; this.ENQ17.Click += new EventHandler(this.button34_Click); this.ENQ34.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ34.FlatAppearance.BorderSize = 2; this.ENQ34.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ34.FlatStyle = FlatStyle.Flat; this.ENQ34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ34.ForeColor = SystemColors.ActiveCaptionText; this.ENQ34.Location = new Point(0x99, 290); this.ENQ34.Name = "ENQ34"; this.ENQ34.Size = new Size(40, 40); this.ENQ34.TabIndex = 0x95; this.ENQ34.Text = "34"; this.ENQ34.TextAlign = ContentAlignment.TopLeft; this.ENQ34.UseVisualStyleBackColor = true; this.ENQ34.Click += new EventHandler(this.button35_Click); this.ENQ18.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ18.FlatAppearance.BorderSize = 2; this.ENQ18.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ18.FlatStyle = FlatStyle.Flat; this.ENQ18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ18.ForeColor = SystemColors.ActiveCaptionText; this.ENQ18.Location = new Point(0x6b, 0x98); this.ENQ18.Name = "ENQ18"; this.ENQ18.Size = new Size(40, 40); this.ENQ18.TabIndex = 0x85; this.ENQ18.Text = "18"; this.ENQ18.TextAlign = ContentAlignment.TopLeft; this.ENQ18.UseVisualStyleBackColor = true; this.ENQ18.Click += new EventHandler(this.button36_Click); this.ENQ33.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ33.FlatAppearance.BorderSize = 2; this.ENQ33.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ33.FlatStyle = FlatStyle.Flat; this.ENQ33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ33.ForeColor = SystemColors.ActiveCaptionText; this.ENQ33.Location = new Point(0x6b, 290); this.ENQ33.Name = "ENQ33"; this.ENQ33.Size = new Size(40, 40); this.ENQ33.TabIndex = 0x94; this.ENQ33.Text = "33"; this.ENQ33.TextAlign = ContentAlignment.TopLeft; this.ENQ33.UseVisualStyleBackColor = true; this.ENQ33.Click += new EventHandler(this.button37_Click); this.ENQ19.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ19.FlatAppearance.BorderSize = 2; this.ENQ19.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ19.FlatStyle = FlatStyle.Flat; this.ENQ19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ19.ForeColor = SystemColors.ActiveCaptionText; this.ENQ19.Location = new Point(0x99, 0x98); this.ENQ19.Name = "ENQ19"; this.ENQ19.Size = new Size(40, 40); this.ENQ19.TabIndex = 0x86; this.ENQ19.Text = "19"; this.ENQ19.TextAlign = ContentAlignment.TopLeft; this.ENQ19.UseVisualStyleBackColor = true; this.ENQ19.Click += new EventHandler(this.button38_Click); this.ENQ32.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ32.FlatAppearance.BorderSize = 2; this.ENQ32.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ32.FlatStyle = FlatStyle.Flat; this.ENQ32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ32.ForeColor = SystemColors.ActiveCaptionText; this.ENQ32.Location = new Point(0x3d, 290); this.ENQ32.Name = "ENQ32"; this.ENQ32.Size = new Size(40, 40); this.ENQ32.TabIndex = 0x93; this.ENQ32.Text = "32"; this.ENQ32.TextAlign = ContentAlignment.TopLeft; this.ENQ32.UseVisualStyleBackColor = true; this.ENQ32.Click += new EventHandler(this.button39_Click); this.ENQ20.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ20.FlatAppearance.BorderSize = 2; this.ENQ20.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ20.FlatStyle = FlatStyle.Flat; this.ENQ20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ20.ForeColor = SystemColors.ActiveCaptionText; this.ENQ20.Location = new Point(0xc6, 0x98); this.ENQ20.Name = "ENQ20"; this.ENQ20.Size = new Size(40, 40); this.ENQ20.TabIndex = 0x87; this.ENQ20.Text = "20"; this.ENQ20.TextAlign = ContentAlignment.TopLeft; this.ENQ20.UseVisualStyleBackColor = true; this.ENQ20.Click += new EventHandler(this.button40_Click); this.ENQ31.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ31.FlatAppearance.BorderSize = 2; this.ENQ31.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ31.FlatStyle = FlatStyle.Flat; this.ENQ31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ31.ForeColor = SystemColors.ActiveCaptionText; this.ENQ31.Location = new Point(15, 290); this.ENQ31.Name = "ENQ31"; this.ENQ31.Size = new Size(40, 40); this.ENQ31.TabIndex = 0x92; this.ENQ31.Text = "31"; this.ENQ31.TextAlign = ContentAlignment.TopLeft; this.ENQ31.UseVisualStyleBackColor = true; this.ENQ31.Click += new EventHandler(this.button41_Click); this.ENQ21.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ21.FlatAppearance.BorderSize = 2; this.ENQ21.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.ENQ21.FlatStyle = FlatStyle.Flat; this.ENQ21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ21.ForeColor = SystemColors.ActiveCaptionText; this.ENQ21.Location = new Point(15, 0xc6); this.ENQ21.Name = "ENQ21"; this.ENQ21.Size = new Size(40, 40); this.ENQ21.TabIndex = 0x88; this.ENQ21.Text = "21"; this.ENQ21.TextAlign = ContentAlignment.TopLeft; this.ENQ21.UseVisualStyleBackColor = true; this.ENQ21.Click += new EventHandler(this.button42_Click); this.ENQ30.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ30.FlatAppearance.BorderSize = 2; this.ENQ30.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ30.FlatStyle = FlatStyle.Flat; this.ENQ30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ30.ForeColor = SystemColors.ActiveCaptionText; this.ENQ30.Location = new Point(0xc6, 0xf4); this.ENQ30.Name = "ENQ30"; this.ENQ30.Size = new Size(40, 40); this.ENQ30.TabIndex = 0x91; this.ENQ30.Text = "30"; this.ENQ30.TextAlign = ContentAlignment.TopLeft; this.ENQ30.UseVisualStyleBackColor = true; this.ENQ30.Click += new EventHandler(this.button43_Click); this.ENQ22.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ22.FlatAppearance.BorderSize = 2; this.ENQ22.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ22.FlatStyle = FlatStyle.Flat; this.ENQ22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ22.ForeColor = SystemColors.ActiveCaptionText; this.ENQ22.Location = new Point(0x3d, 0xc6); this.ENQ22.Name = "ENQ22"; this.ENQ22.Size = new Size(40, 40); this.ENQ22.TabIndex = 0x89; this.ENQ22.Text = "22"; this.ENQ22.TextAlign = ContentAlignment.TopLeft; this.ENQ22.UseVisualStyleBackColor = true; this.ENQ22.Click += new EventHandler(this.button44_Click); this.ENQ29.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ29.FlatAppearance.BorderSize = 2; this.ENQ29.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ29.FlatStyle = FlatStyle.Flat; this.ENQ29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ29.ForeColor = SystemColors.ActiveCaptionText; this.ENQ29.Location = new Point(0x99, 0xf4); this.ENQ29.Name = "ENQ29"; this.ENQ29.Size = new Size(40, 40); this.ENQ29.TabIndex = 0x90; this.ENQ29.Text = "29"; this.ENQ29.TextAlign = ContentAlignment.TopLeft; this.ENQ29.UseVisualStyleBackColor = true; this.ENQ29.Click += new EventHandler(this.button45_Click); this.ENQ23.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ23.FlatAppearance.BorderSize = 2; this.ENQ23.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ23.FlatStyle = FlatStyle.Flat; this.ENQ23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ23.ForeColor = SystemColors.ActiveCaptionText; this.ENQ23.Location = new Point(0x6b, 0xc6); this.ENQ23.Name = "ENQ23"; this.ENQ23.Size = new Size(40, 40); this.ENQ23.TabIndex = 0x8a; this.ENQ23.Text = "23"; this.ENQ23.TextAlign = ContentAlignment.TopLeft; this.ENQ23.UseVisualStyleBackColor = true; this.ENQ23.Click += new EventHandler(this.button46_Click); this.ENQ28.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ28.FlatAppearance.BorderSize = 2; this.ENQ28.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ28.FlatStyle = FlatStyle.Flat; this.ENQ28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ28.ForeColor = SystemColors.ActiveCaptionText; this.ENQ28.Location = new Point(0x6b, 0xf4); this.ENQ28.Name = "ENQ28"; this.ENQ28.Size = new Size(40, 40); this.ENQ28.TabIndex = 0x8f; this.ENQ28.Text = "28"; this.ENQ28.TextAlign = ContentAlignment.TopLeft; this.ENQ28.UseVisualStyleBackColor = true; this.ENQ28.Click += new EventHandler(this.button47_Click); this.ENQ24.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ24.FlatAppearance.BorderSize = 2; this.ENQ24.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ24.FlatStyle = FlatStyle.Flat; this.ENQ24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ24.ForeColor = SystemColors.ActiveCaptionText; this.ENQ24.Location = new Point(0x99, 0xc6); this.ENQ24.Name = "ENQ24"; this.ENQ24.Size = new Size(40, 40); this.ENQ24.TabIndex = 0x8b; this.ENQ24.Text = "24"; this.ENQ24.TextAlign = ContentAlignment.TopLeft; this.ENQ24.UseVisualStyleBackColor = true; this.ENQ24.Click += new EventHandler(this.button48_Click); this.ENQ27.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ27.FlatAppearance.BorderSize = 2; this.ENQ27.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ27.FlatStyle = FlatStyle.Flat; this.ENQ27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ27.ForeColor = SystemColors.ActiveCaptionText; this.ENQ27.Location = new Point(0x3d, 0xf4); this.ENQ27.Name = "ENQ27"; this.ENQ27.Size = new Size(40, 40); this.ENQ27.TabIndex = 0x8e; this.ENQ27.Text = "27"; this.ENQ27.TextAlign = ContentAlignment.TopLeft; this.ENQ27.UseVisualStyleBackColor = true; this.ENQ27.Click += new EventHandler(this.button49_Click); this.ENQ25.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ25.FlatAppearance.BorderSize = 2; this.ENQ25.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ25.FlatStyle = FlatStyle.Flat; this.ENQ25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ25.ForeColor = SystemColors.ActiveCaptionText; this.ENQ25.Location = new Point(0xc6, 0xc6); this.ENQ25.Name = "ENQ25"; this.ENQ25.Size = new Size(40, 40); this.ENQ25.TabIndex = 140; this.ENQ25.Text = "25"; this.ENQ25.TextAlign = ContentAlignment.TopLeft; this.ENQ25.UseVisualStyleBackColor = true; this.ENQ25.Click += new EventHandler(this.button50_Click); this.ENQ26.BackgroundImageLayout = ImageLayout.Stretch; this.ENQ26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.ENQ26.FlatAppearance.BorderSize = 2; this.ENQ26.FlatAppearance.CheckedBackColor = Color.Black; this.ENQ26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.ENQ26.FlatStyle = FlatStyle.Flat; this.ENQ26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.ENQ26.ForeColor = SystemColors.ActiveCaptionText; this.ENQ26.Location = new Point(15, 0xf4); this.ENQ26.Name = "ENQ26"; this.ENQ26.Size = new Size(40, 40); this.ENQ26.TabIndex = 0x8d; this.ENQ26.Text = "26"; this.ENQ26.TextAlign = ContentAlignment.TopLeft; this.ENQ26.UseVisualStyleBackColor = true; this.ENQ26.Click += new EventHandler(this.button51_Click); this.ref4EN.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.ref4EN.BackColor = Color.White; this.ref4EN.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.ref4EN.Location = new Point(0x4d, 0x199); this.ref4EN.Multiline = true; this.ref4EN.Name = "ref4EN"; this.ref4EN.ReadOnly = true; this.ref4EN.ScrollBars = ScrollBars.Vertical; this.ref4EN.Size = new Size(0x2a5, 0x92); this.ref4EN.TabIndex = 80; this.panel4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel4.BackColor = Color.Transparent; this.panel4.Controls.Add(this.ENGopd); this.panel4.Controls.Add(this.ENGopc); this.panel4.Controls.Add(this.ENGopb); this.panel4.Controls.Add(this.ENGopa); this.panel4.Controls.Add(this.metroRadioButton1); this.panel4.Controls.Add(this.metroRadioButton2); this.panel4.Controls.Add(this.metroRadioButton3); this.panel4.Controls.Add(this.metroRadioButton4); this.panel4.Location = new Point(0x4d, 0x10f); this.panel4.Name = "panel4"; this.panel4.Size = new Size(0x2a5, 0x84); this.panel4.TabIndex = 0x4f; this.ENGopd.AutoSize = true; this.ENGopd.Font = new Font("Britannic Bold", 11.25f); this.ENGopd.Location = new Point(0x36, 0x67); this.ENGopd.Name = "ENGopd"; this.ENGopd.Size = new Size(0x24, 0x10); this.ENGopd.TabIndex = 0x77; this.ENGopd.Text = "OpD"; this.ENGopc.AutoSize = true; this.ENGopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.ENGopc.Location = new Point(0x36, 0x47); this.ENGopc.Name = "ENGopc"; this.ENGopc.Size = new Size(0x23, 0x10); this.ENGopc.TabIndex = 0x76; this.ENGopc.Text = "OpC"; this.ENGopb.AutoSize = true; this.ENGopb.Font = new Font("Britannic Bold", 11.25f); this.ENGopb.Location = new Point(0x35, 0x2a); this.ENGopb.Name = "ENGopb"; this.ENGopb.Size = new Size(0x23, 0x10); this.ENGopb.TabIndex = 0x75; this.ENGopb.Text = "OpB"; this.ENGopa.AutoSize = true; this.ENGopa.Font = new Font("Britannic Bold", 11.25f); this.ENGopa.Location = new Point(0x36, 11); this.ENGopa.Name = "ENGopa"; this.ENGopa.Size = new Size(0x22, 0x10); this.ENGopa.TabIndex = 0x74; this.ENGopa.Text = "OpA"; this.metroRadioButton1.AutoSize = true; this.metroRadioButton1.Location = new Point(0x11, 12); this.metroRadioButton1.Name = "metroRadioButton1"; this.metroRadioButton1.Size = new Size(0x1f, 15); this.metroRadioButton1.Style = MetroColorStyle.Blue; this.metroRadioButton1.TabIndex = 0x1b; this.metroRadioButton1.TabStop = true; this.metroRadioButton1.Text = "A"; this.metroRadioButton1.Theme = MetroThemeStyle.Light; this.metroRadioButton1.UseSelectable = true; this.metroRadioButton1.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton1.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton2.AutoSize = true; this.metroRadioButton2.Location = new Point(0x11, 0x2b); this.metroRadioButton2.Name = "metroRadioButton2"; this.metroRadioButton2.Size = new Size(30, 15); this.metroRadioButton2.Style = MetroColorStyle.Blue; this.metroRadioButton2.TabIndex = 0x1c; this.metroRadioButton2.TabStop = true; this.metroRadioButton2.Text = "B"; this.metroRadioButton2.Theme = MetroThemeStyle.Light; this.metroRadioButton2.UseSelectable = true; this.metroRadioButton2.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton2.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton3.AutoSize = true; this.metroRadioButton3.Location = new Point(0x11, 0x48); this.metroRadioButton3.Name = "metroRadioButton3"; this.metroRadioButton3.Size = new Size(0x1f, 15); this.metroRadioButton3.Style = MetroColorStyle.Blue; this.metroRadioButton3.TabIndex = 0x1d; this.metroRadioButton3.TabStop = true; this.metroRadioButton3.Text = "C"; this.metroRadioButton3.Theme = MetroThemeStyle.Light; this.metroRadioButton3.UseSelectable = true; this.metroRadioButton3.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton3.Click += new EventHandler(this.radioButton_Click4EN); this.metroRadioButton4.AutoSize = true; this.metroRadioButton4.Location = new Point(0x11, 0x67); this.metroRadioButton4.Name = "metroRadioButton4"; this.metroRadioButton4.Size = new Size(0x1f, 15); this.metroRadioButton4.Style = MetroColorStyle.Blue; this.metroRadioButton4.TabIndex = 30; this.metroRadioButton4.TabStop = true; this.metroRadioButton4.Text = "D"; this.metroRadioButton4.Theme = MetroThemeStyle.Light; this.metroRadioButton4.UseSelectable = true; this.metroRadioButton4.CheckedChanged += new EventHandler(this.rbchk4eng); this.metroRadioButton4.Click += new EventHandler(this.radioButton_Click4EN); this.sec1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec1.BackColor = Color.White; this.sec1.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec1.ForeColor = SystemColors.Desktop; this.sec1.Location = new Point(0x4d, 3); this.sec1.Multiline = true; this.sec1.Name = "sec1"; this.sec1.ReadOnly = true; this.sec1.ScrollBars = ScrollBars.Vertical; this.sec1.Size = new Size(0x2a5, 0x106); this.sec1.TabIndex = 0x27; this.GKtab.Controls.Add(this.markandnextGK); this.GKtab.Controls.Add(this.panel15); this.GKtab.Controls.Add(this.label5); this.GKtab.Controls.Add(this.savennextGK); this.GKtab.Controls.Add(this.panel7); this.GKtab.Controls.Add(this.refr4GK); this.GKtab.Controls.Add(this.panel5); this.GKtab.Controls.Add(this.sec3); this.GKtab.Controls.Add(this.panel19); this.GKtab.HorizontalScrollbarBarColor = true; this.GKtab.HorizontalScrollbarHighlightOnWheel = false; this.GKtab.HorizontalScrollbarSize = 10; this.GKtab.Location = new Point(4, 0x23); this.GKtab.Name = "GKtab"; this.GKtab.Size = new Size(0x3f8, 0x2d9); this.GKtab.Style = MetroColorStyle.Orange; this.GKtab.TabIndex = 2; this.GKtab.Text = "General Awareness"; this.GKtab.Theme = MetroThemeStyle.Light; this.GKtab.VerticalScrollbarBarColor = true; this.GKtab.VerticalScrollbarHighlightOnWheel = false; this.GKtab.VerticalScrollbarSize = 10; this.panel19.BackColor = Color.Transparent; this.panel19.Controls.Add(this.textBox11); this.panel19.Controls.Add(this.chkansGK); this.panel19.Controls.Add(this.metroLabel5); this.panel19.Controls.Add(this.ans4GK); this.panel19.Controls.Add(this.secnameGK); this.panel19.Controls.Add(this.metroLabel6); this.panel19.Controls.Add(this.metroLabel8); this.panel19.Controls.Add(this.metroLabel7); this.panel19.Location = new Point(0x35f, 5); this.panel19.Name = "panel19"; this.panel19.Size = new Size(0x90, 270); this.panel19.TabIndex = 0x66; this.panel19.Visible = false; this.textBox11.Location = new Point(0x15, 0x13); this.textBox11.Multiline = true; this.textBox11.Name = "textBox11"; this.textBox11.Size = new Size(0x18, 0x1b); this.textBox11.TabIndex = 0x56; this.textBox11.Text = "1"; this.chkansGK.Location = new Point(0x15, 0x34); this.chkansGK.Name = "chkansGK"; this.chkansGK.Size = new Size(40, 20); this.chkansGK.TabIndex = 0x55; this.metroLabel5.AutoSize = true; this.metroLabel5.FontWeight = MetroLabelWeight.Bold; this.metroLabel5.Location = new Point(0x1c, 0xd7); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new Size(0x3d, 0x13); this.metroLabel5.Style = MetroColorStyle.Black; this.metroLabel5.TabIndex = 0x17; this.metroLabel5.Text = "option4"; this.metroLabel5.Theme = MetroThemeStyle.Light; this.metroLabel5.UseStyleColors = true; this.ans4GK.Location = new Point(0x54, 0x34); this.ans4GK.Name = "ans4GK"; this.ans4GK.Size = new Size(40, 20); this.ans4GK.TabIndex = 0x5e; this.secnameGK.AutoSize = true; this.secnameGK.Location = new Point(0x49, 0x13); this.secnameGK.Name = "secnameGK"; this.secnameGK.Size = new Size(0x16, 13); this.secnameGK.TabIndex = 0x61; this.secnameGK.Text = "GK"; this.metroLabel6.AutoSize = true; this.metroLabel6.FontWeight = MetroLabelWeight.Bold; this.metroLabel6.Location = new Point(0x1c, 190); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new Size(0x3d, 0x13); this.metroLabel6.Style = MetroColorStyle.Black; this.metroLabel6.TabIndex = 0x18; this.metroLabel6.Text = "option3"; this.metroLabel6.Theme = MetroThemeStyle.Light; this.metroLabel6.UseStyleColors = true; this.metroLabel8.AutoSize = true; this.metroLabel8.FontWeight = MetroLabelWeight.Bold; this.metroLabel8.Location = new Point(0x1c, 0x7e); this.metroLabel8.Name = "metroLabel8"; this.metroLabel8.Size = new Size(0x3d, 0x13); this.metroLabel8.Style = MetroColorStyle.Black; this.metroLabel8.TabIndex = 0x1a; this.metroLabel8.Text = "option1"; this.metroLabel8.Theme = MetroThemeStyle.Light; this.metroLabel8.UseStyleColors = true; this.metroLabel7.AutoSize = true; this.metroLabel7.FontWeight = MetroLabelWeight.Bold; this.metroLabel7.Location = new Point(0x1c, 0x9b); this.metroLabel7.Name = "metroLabel7"; this.metroLabel7.Size = new Size(0x3d, 0x13); this.metroLabel7.Style = MetroColorStyle.Black; this.metroLabel7.TabIndex = 0x19; this.metroLabel7.Text = "option2"; this.metroLabel7.Theme = MetroThemeStyle.Light; this.metroLabel7.UseStyleColors = true; this.markandnextGK.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextGK.Location = new Point(0x2f5, 0x196); this.markandnextGK.Name = "markandnextGK"; this.markandnextGK.Size = new Size(0x79, 0x2d); this.markandnextGK.Style = MetroColorStyle.Blue; this.markandnextGK.TabIndex = 0x65; this.markandnextGK.Text = "Mark and Next"; this.markandnextGK.Theme = MetroThemeStyle.Light; this.markandnextGK.UseSelectable = true; this.markandnextGK.Click += new EventHandler(this.markandnextGK_Click); this.panel15.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel15.BackColor = SystemColors.InactiveCaptionText; this.panel15.Controls.Add(this.metroLabel33); this.panel15.Controls.Add(this.pictureBox10); this.panel15.Controls.Add(this.metroLabel34); this.panel15.Controls.Add(this.metroLabel35); this.panel15.Controls.Add(this.metroLabel36); this.panel15.Controls.Add(this.pictureBox11); this.panel15.Controls.Add(this.pictureBox12); this.panel15.Controls.Add(this.pictureBox13); this.panel15.Location = new Point(0x2f5, 0x1c6); this.panel15.Name = "panel15"; this.panel15.Size = new Size(0x108, 0xb2); this.panel15.TabIndex = 100; this.metroLabel33.AutoSize = true; this.metroLabel33.BackColor = Color.Transparent; this.metroLabel33.FontWeight = MetroLabelWeight.Bold; this.metroLabel33.Location = new Point(0x3b, 0x94); this.metroLabel33.Name = "metroLabel33"; this.metroLabel33.Size = new Size(0x8b, 0x13); this.metroLabel33.Style = MetroColorStyle.Purple; this.metroLabel33.TabIndex = 0x65; this.metroLabel33.Text = "Marked For Review"; this.metroLabel33.Theme = MetroThemeStyle.Dark; this.metroLabel33.UseCustomBackColor = true; this.metroLabel33.UseStyleColors = true; this.pictureBox10.BackColor = Color.White; this.pictureBox10.Image = Resources.rvw; this.pictureBox10.Location = new Point(3, 0x8f); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new Size(30, 30); this.pictureBox10.TabIndex = 100; this.pictureBox10.TabStop = false; this.metroLabel34.AutoSize = true; this.metroLabel34.BackColor = Color.Transparent; this.metroLabel34.FontWeight = MetroLabelWeight.Bold; this.metroLabel34.Location = new Point(60, 0x63); this.metroLabel34.Name = "metroLabel34"; this.metroLabel34.Size = new Size(0x53, 0x13); this.metroLabel34.Style = MetroColorStyle.White; this.metroLabel34.TabIndex = 0x63; this.metroLabel34.Text = "Not Visited"; this.metroLabel34.Theme = MetroThemeStyle.Dark; this.metroLabel34.UseCustomBackColor = true; this.metroLabel34.UseStyleColors = true; this.metroLabel35.AutoSize = true; this.metroLabel35.BackColor = Color.Transparent; this.metroLabel35.FontWeight = MetroLabelWeight.Bold; this.metroLabel35.Location = new Point(60, 0x35); this.metroLabel35.Name = "metroLabel35"; this.metroLabel35.Size = new Size(0x68, 0x13); this.metroLabel35.Style = MetroColorStyle.Red; this.metroLabel35.TabIndex = 0x62; this.metroLabel35.Text = "Not Answered"; this.metroLabel35.Theme = MetroThemeStyle.Dark; this.metroLabel35.UseCustomBackColor = true; this.metroLabel35.UseStyleColors = true; this.metroLabel36.AutoSize = true; this.metroLabel36.BackColor = Color.Transparent; this.metroLabel36.FontWeight = MetroLabelWeight.Bold; this.metroLabel36.Location = new Point(60, 7); this.metroLabel36.Name = "metroLabel36"; this.metroLabel36.Size = new Size(0x4b, 0x13); this.metroLabel36.Style = MetroColorStyle.Green; this.metroLabel36.TabIndex = 0x5f; this.metroLabel36.Text = "Answered"; this.metroLabel36.Theme = MetroThemeStyle.Dark; this.metroLabel36.UseCustomBackColor = true; this.metroLabel36.UseStyleColors = true; this.pictureBox11.BackColor = Color.White; this.pictureBox11.Location = new Point(3, 0x5f); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new Size(30, 30); this.pictureBox11.TabIndex = 0x61; this.pictureBox11.TabStop = false; this.pictureBox12.Image = Resources.unchk; this.pictureBox12.Location = new Point(3, 0x31); this.pictureBox12.Name = "pictureBox12"; this.pictureBox12.Size = new Size(30, 30); this.pictureBox12.TabIndex = 0x60; this.pictureBox12.TabStop = false; this.pictureBox13.Image = Resources.chk1; this.pictureBox13.Location = new Point(3, 3); this.pictureBox13.Name = "pictureBox13"; this.pictureBox13.Size = new Size(30, 30); this.pictureBox13.TabIndex = 0x5f; this.pictureBox13.TabStop = false; this.label5.AutoSize = true; this.label5.Location = new Point(10, 6); this.label5.Name = "label5"; this.label5.Size = new Size(0x3a, 13); this.label5.TabIndex = 0x57; this.label5.Text = "Question 1"; this.savennextGK.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextGK.Location = new Point(0x373, 0x196); this.savennextGK.Name = "savennextGK"; this.savennextGK.Size = new Size(0x8a, 0x2d); this.savennextGK.Style = MetroColorStyle.Blue; this.savennextGK.TabIndex = 0x54; this.savennextGK.Text = "Save and Next"; this.savennextGK.Theme = MetroThemeStyle.Light; this.savennextGK.UseSelectable = true; this.savennextGK.Click += new EventHandler(this.savennextGK_Click); this.panel7.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel7.AutoScroll = true; this.panel7.BackColor = Color.Transparent; this.panel7.BorderStyle = BorderStyle.FixedSingle; this.panel7.Controls.Add(this.GK1); this.panel7.Controls.Add(this.GK50); this.panel7.Controls.Add(this.GK2); this.panel7.Controls.Add(this.GK49); this.panel7.Controls.Add(this.GK3); this.panel7.Controls.Add(this.GK48); this.panel7.Controls.Add(this.GK4); this.panel7.Controls.Add(this.GK47); this.panel7.Controls.Add(this.GK5); this.panel7.Controls.Add(this.GK46); this.panel7.Controls.Add(this.GK6); this.panel7.Controls.Add(this.GK45); this.panel7.Controls.Add(this.GK7); this.panel7.Controls.Add(this.GK44); this.panel7.Controls.Add(this.GK8); this.panel7.Controls.Add(this.GK43); this.panel7.Controls.Add(this.GK9); this.panel7.Controls.Add(this.GK42); this.panel7.Controls.Add(this.GK10); this.panel7.Controls.Add(this.GK41); this.panel7.Controls.Add(this.GK11); this.panel7.Controls.Add(this.GK40); this.panel7.Controls.Add(this.GK12); this.panel7.Controls.Add(this.GK39); this.panel7.Controls.Add(this.GK13); this.panel7.Controls.Add(this.GK38); this.panel7.Controls.Add(this.GK14); this.panel7.Controls.Add(this.GK37); this.panel7.Controls.Add(this.GK15); this.panel7.Controls.Add(this.GK36); this.panel7.Controls.Add(this.GK16); this.panel7.Controls.Add(this.GK35); this.panel7.Controls.Add(this.GK17); this.panel7.Controls.Add(this.GK34); this.panel7.Controls.Add(this.GK18); this.panel7.Controls.Add(this.GK33); this.panel7.Controls.Add(this.GK19); this.panel7.Controls.Add(this.GK32); this.panel7.Controls.Add(this.GK20); this.panel7.Controls.Add(this.GK31); this.panel7.Controls.Add(this.GK21); this.panel7.Controls.Add(this.GK30); this.panel7.Controls.Add(this.GK22); this.panel7.Controls.Add(this.GK29); this.panel7.Controls.Add(this.GK23); this.panel7.Controls.Add(this.GK28); this.panel7.Controls.Add(this.GK24); this.panel7.Controls.Add(this.GK27); this.panel7.Controls.Add(this.GK25); this.panel7.Controls.Add(this.GK26); this.panel7.Location = new Point(0x2f5, 3); this.panel7.Name = "panel7"; this.panel7.Size = new Size(0x108, 0x191); this.panel7.TabIndex = 0x53; this.GK1.BackgroundImageLayout = ImageLayout.Stretch; this.GK1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK1.FlatAppearance.BorderSize = 2; this.GK1.FlatAppearance.CheckedBackColor = Color.Black; this.GK1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK1.FlatStyle = FlatStyle.Flat; this.GK1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK1.ForeColor = SystemColors.ActiveCaptionText; this.GK1.Location = new Point(15, 14); this.GK1.Name = "GK1"; this.GK1.Size = new Size(40, 40); this.GK1.TabIndex = 0x74; this.GK1.Text = "1"; this.GK1.TextAlign = ContentAlignment.TopLeft; this.GK1.UseVisualStyleBackColor = true; this.GK1.Click += new EventHandler(this.GK1_Click); this.GK50.BackgroundImageLayout = ImageLayout.Stretch; this.GK50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK50.FlatAppearance.BorderSize = 2; this.GK50.FlatAppearance.CheckedBackColor = Color.Black; this.GK50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK50.FlatStyle = FlatStyle.Flat; this.GK50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK50.ForeColor = SystemColors.ActiveCaptionText; this.GK50.Location = new Point(0xc6, 0x1ac); this.GK50.Name = "GK50"; this.GK50.Size = new Size(40, 40); this.GK50.TabIndex = 0xa5; this.GK50.Text = "50"; this.GK50.TextAlign = ContentAlignment.TopLeft; this.GK50.UseVisualStyleBackColor = true; this.GK50.Visible = false; this.GK50.Click += new EventHandler(this.GK50_Click); this.GK2.BackgroundImageLayout = ImageLayout.Stretch; this.GK2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK2.FlatAppearance.BorderSize = 2; this.GK2.FlatAppearance.CheckedBackColor = Color.Black; this.GK2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK2.FlatStyle = FlatStyle.Flat; this.GK2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK2.ForeColor = SystemColors.ActiveCaptionText; this.GK2.Location = new Point(0x3d, 14); this.GK2.Name = "GK2"; this.GK2.Size = new Size(40, 40); this.GK2.TabIndex = 0x75; this.GK2.Text = "2"; this.GK2.TextAlign = ContentAlignment.TopLeft; this.GK2.UseVisualStyleBackColor = true; this.GK2.Click += new EventHandler(this.GK2_Click); this.GK49.BackgroundImageLayout = ImageLayout.Stretch; this.GK49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK49.FlatAppearance.BorderSize = 2; this.GK49.FlatAppearance.CheckedBackColor = Color.Black; this.GK49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK49.FlatStyle = FlatStyle.Flat; this.GK49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK49.ForeColor = SystemColors.ActiveCaptionText; this.GK49.Location = new Point(0x99, 0x1ac); this.GK49.Name = "GK49"; this.GK49.Size = new Size(40, 40); this.GK49.TabIndex = 0xa4; this.GK49.Text = "49"; this.GK49.TextAlign = ContentAlignment.TopLeft; this.GK49.UseVisualStyleBackColor = true; this.GK49.Visible = false; this.GK49.Click += new EventHandler(this.GK49_Click); this.GK3.BackgroundImageLayout = ImageLayout.Stretch; this.GK3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK3.FlatAppearance.BorderSize = 2; this.GK3.FlatAppearance.CheckedBackColor = Color.Black; this.GK3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK3.FlatStyle = FlatStyle.Flat; this.GK3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK3.ForeColor = SystemColors.ActiveCaptionText; this.GK3.Location = new Point(0x6b, 14); this.GK3.Name = "GK3"; this.GK3.Size = new Size(40, 40); this.GK3.TabIndex = 0x76; this.GK3.Text = "3"; this.GK3.TextAlign = ContentAlignment.TopLeft; this.GK3.UseVisualStyleBackColor = true; this.GK3.Click += new EventHandler(this.GK3_Click); this.GK48.BackgroundImageLayout = ImageLayout.Stretch; this.GK48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK48.FlatAppearance.BorderSize = 2; this.GK48.FlatAppearance.CheckedBackColor = Color.Black; this.GK48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK48.FlatStyle = FlatStyle.Flat; this.GK48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK48.ForeColor = SystemColors.ActiveCaptionText; this.GK48.Location = new Point(0x6b, 0x1ac); this.GK48.Name = "GK48"; this.GK48.Size = new Size(40, 40); this.GK48.TabIndex = 0xa3; this.GK48.Text = "48"; this.GK48.TextAlign = ContentAlignment.TopLeft; this.GK48.UseVisualStyleBackColor = true; this.GK48.Visible = false; this.GK48.Click += new EventHandler(this.GK48_Click); this.GK4.BackgroundImageLayout = ImageLayout.Stretch; this.GK4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK4.FlatAppearance.BorderSize = 2; this.GK4.FlatAppearance.CheckedBackColor = Color.Black; this.GK4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK4.FlatStyle = FlatStyle.Flat; this.GK4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK4.ForeColor = SystemColors.ActiveCaptionText; this.GK4.Location = new Point(0x99, 14); this.GK4.Name = "GK4"; this.GK4.Size = new Size(40, 40); this.GK4.TabIndex = 0x77; this.GK4.Text = "4"; this.GK4.TextAlign = ContentAlignment.TopLeft; this.GK4.UseVisualStyleBackColor = true; this.GK4.Click += new EventHandler(this.GK4_Click); this.GK47.BackgroundImageLayout = ImageLayout.Stretch; this.GK47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK47.FlatAppearance.BorderSize = 2; this.GK47.FlatAppearance.CheckedBackColor = Color.Black; this.GK47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK47.FlatStyle = FlatStyle.Flat; this.GK47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK47.ForeColor = SystemColors.ActiveCaptionText; this.GK47.Location = new Point(0x3d, 0x1ac); this.GK47.Name = "GK47"; this.GK47.Size = new Size(40, 40); this.GK47.TabIndex = 0xa2; this.GK47.Text = "47"; this.GK47.TextAlign = ContentAlignment.TopLeft; this.GK47.UseVisualStyleBackColor = true; this.GK47.Visible = false; this.GK47.Click += new EventHandler(this.GK47_Click); this.GK5.BackgroundImageLayout = ImageLayout.Stretch; this.GK5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK5.FlatAppearance.BorderSize = 2; this.GK5.FlatAppearance.CheckedBackColor = Color.Black; this.GK5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK5.FlatStyle = FlatStyle.Flat; this.GK5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK5.ForeColor = SystemColors.ActiveCaptionText; this.GK5.Location = new Point(0xc6, 14); this.GK5.Name = "GK5"; this.GK5.Size = new Size(40, 40); this.GK5.TabIndex = 120; this.GK5.Text = "5"; this.GK5.TextAlign = ContentAlignment.TopLeft; this.GK5.UseVisualStyleBackColor = true; this.GK5.Click += new EventHandler(this.GK5_Click); this.GK46.BackgroundImageLayout = ImageLayout.Stretch; this.GK46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK46.FlatAppearance.BorderSize = 2; this.GK46.FlatAppearance.CheckedBackColor = Color.Black; this.GK46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK46.FlatStyle = FlatStyle.Flat; this.GK46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK46.ForeColor = SystemColors.ActiveCaptionText; this.GK46.Location = new Point(15, 0x1ac); this.GK46.Name = "GK46"; this.GK46.Size = new Size(40, 40); this.GK46.TabIndex = 0xa1; this.GK46.Text = "46"; this.GK46.TextAlign = ContentAlignment.TopLeft; this.GK46.UseVisualStyleBackColor = true; this.GK46.Visible = false; this.GK46.Click += new EventHandler(this.GK46_Click); this.GK6.BackgroundImageLayout = ImageLayout.Stretch; this.GK6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK6.FlatAppearance.BorderSize = 2; this.GK6.FlatAppearance.CheckedBackColor = Color.Black; this.GK6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK6.FlatStyle = FlatStyle.Flat; this.GK6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK6.ForeColor = SystemColors.ActiveCaptionText; this.GK6.Location = new Point(15, 60); this.GK6.Name = "GK6"; this.GK6.Size = new Size(40, 40); this.GK6.TabIndex = 0x79; this.GK6.Text = "6"; this.GK6.TextAlign = ContentAlignment.TopLeft; this.GK6.UseVisualStyleBackColor = true; this.GK6.Click += new EventHandler(this.GK6_Click); this.GK45.BackgroundImageLayout = ImageLayout.Stretch; this.GK45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK45.FlatAppearance.BorderSize = 2; this.GK45.FlatAppearance.CheckedBackColor = Color.Black; this.GK45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK45.FlatStyle = FlatStyle.Flat; this.GK45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK45.ForeColor = SystemColors.ActiveCaptionText; this.GK45.Location = new Point(0xc6, 0x17e); this.GK45.Name = "GK45"; this.GK45.Size = new Size(40, 40); this.GK45.TabIndex = 160; this.GK45.Text = "45"; this.GK45.TextAlign = ContentAlignment.TopLeft; this.GK45.UseVisualStyleBackColor = true; this.GK45.Visible = false; this.GK45.Click += new EventHandler(this.GK45_Click); this.GK7.BackgroundImageLayout = ImageLayout.Stretch; this.GK7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK7.FlatAppearance.BorderSize = 2; this.GK7.FlatAppearance.CheckedBackColor = Color.Black; this.GK7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK7.FlatStyle = FlatStyle.Flat; this.GK7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK7.ForeColor = SystemColors.ActiveCaptionText; this.GK7.Location = new Point(0x3d, 60); this.GK7.Name = "GK7"; this.GK7.Size = new Size(40, 40); this.GK7.TabIndex = 0x7a; this.GK7.Text = "7"; this.GK7.TextAlign = ContentAlignment.TopLeft; this.GK7.UseVisualStyleBackColor = true; this.GK7.Click += new EventHandler(this.GK7_Click); this.GK44.BackgroundImageLayout = ImageLayout.Stretch; this.GK44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK44.FlatAppearance.BorderSize = 2; this.GK44.FlatAppearance.CheckedBackColor = Color.Black; this.GK44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK44.FlatStyle = FlatStyle.Flat; this.GK44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK44.ForeColor = SystemColors.ActiveCaptionText; this.GK44.Location = new Point(0x99, 0x17e); this.GK44.Name = "GK44"; this.GK44.Size = new Size(40, 40); this.GK44.TabIndex = 0x9f; this.GK44.Text = "44"; this.GK44.TextAlign = ContentAlignment.TopLeft; this.GK44.UseVisualStyleBackColor = true; this.GK44.Visible = false; this.GK44.Click += new EventHandler(this.GK44_Click); this.GK8.BackgroundImageLayout = ImageLayout.Stretch; this.GK8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK8.FlatAppearance.BorderSize = 2; this.GK8.FlatAppearance.CheckedBackColor = Color.Black; this.GK8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK8.FlatStyle = FlatStyle.Flat; this.GK8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK8.ForeColor = SystemColors.ActiveCaptionText; this.GK8.Location = new Point(0x6b, 60); this.GK8.Name = "GK8"; this.GK8.Size = new Size(40, 40); this.GK8.TabIndex = 0x7b; this.GK8.Text = "8"; this.GK8.TextAlign = ContentAlignment.TopLeft; this.GK8.UseVisualStyleBackColor = true; this.GK8.Click += new EventHandler(this.GK8_Click); this.GK43.BackgroundImageLayout = ImageLayout.Stretch; this.GK43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK43.FlatAppearance.BorderSize = 2; this.GK43.FlatAppearance.CheckedBackColor = Color.Black; this.GK43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK43.FlatStyle = FlatStyle.Flat; this.GK43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK43.ForeColor = SystemColors.ActiveCaptionText; this.GK43.Location = new Point(0x6b, 0x17e); this.GK43.Name = "GK43"; this.GK43.Size = new Size(40, 40); this.GK43.TabIndex = 0x9e; this.GK43.Text = "43"; this.GK43.TextAlign = ContentAlignment.TopLeft; this.GK43.UseVisualStyleBackColor = true; this.GK43.Visible = false; this.GK43.Click += new EventHandler(this.GK43_Click); this.GK9.BackgroundImageLayout = ImageLayout.Stretch; this.GK9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK9.FlatAppearance.BorderSize = 2; this.GK9.FlatAppearance.CheckedBackColor = Color.Black; this.GK9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK9.FlatStyle = FlatStyle.Flat; this.GK9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK9.ForeColor = SystemColors.ActiveCaptionText; this.GK9.Location = new Point(0x99, 60); this.GK9.Name = "GK9"; this.GK9.Size = new Size(40, 40); this.GK9.TabIndex = 0x7c; this.GK9.Text = "9"; this.GK9.TextAlign = ContentAlignment.TopLeft; this.GK9.UseVisualStyleBackColor = true; this.GK9.Click += new EventHandler(this.GK9_Click); this.GK42.BackgroundImageLayout = ImageLayout.Stretch; this.GK42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK42.FlatAppearance.BorderSize = 2; this.GK42.FlatAppearance.CheckedBackColor = Color.Black; this.GK42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK42.FlatStyle = FlatStyle.Flat; this.GK42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK42.ForeColor = SystemColors.ActiveCaptionText; this.GK42.Location = new Point(0x3d, 0x17e); this.GK42.Name = "GK42"; this.GK42.Size = new Size(40, 40); this.GK42.TabIndex = 0x9d; this.GK42.Text = "42"; this.GK42.TextAlign = ContentAlignment.TopLeft; this.GK42.UseVisualStyleBackColor = true; this.GK42.Visible = false; this.GK42.Click += new EventHandler(this.GK42_Click); this.GK10.BackgroundImageLayout = ImageLayout.Stretch; this.GK10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK10.FlatAppearance.BorderSize = 2; this.GK10.FlatAppearance.CheckedBackColor = Color.Black; this.GK10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK10.FlatStyle = FlatStyle.Flat; this.GK10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK10.ForeColor = SystemColors.ActiveCaptionText; this.GK10.Location = new Point(0xc6, 60); this.GK10.Name = "GK10"; this.GK10.Size = new Size(40, 40); this.GK10.TabIndex = 0x7d; this.GK10.Text = "10"; this.GK10.TextAlign = ContentAlignment.TopLeft; this.GK10.UseVisualStyleBackColor = true; this.GK10.Click += new EventHandler(this.GK10_Click); this.GK41.BackgroundImageLayout = ImageLayout.Stretch; this.GK41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK41.FlatAppearance.BorderSize = 2; this.GK41.FlatAppearance.CheckedBackColor = Color.Black; this.GK41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK41.FlatStyle = FlatStyle.Flat; this.GK41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK41.ForeColor = SystemColors.ActiveCaptionText; this.GK41.Location = new Point(15, 0x17e); this.GK41.Name = "GK41"; this.GK41.Size = new Size(40, 40); this.GK41.TabIndex = 0x9c; this.GK41.Text = "41"; this.GK41.TextAlign = ContentAlignment.TopLeft; this.GK41.UseVisualStyleBackColor = true; this.GK41.Visible = false; this.GK41.Click += new EventHandler(this.GK41_Click); this.GK11.BackgroundImageLayout = ImageLayout.Stretch; this.GK11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK11.FlatAppearance.BorderSize = 2; this.GK11.FlatAppearance.CheckedBackColor = Color.Black; this.GK11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK11.FlatStyle = FlatStyle.Flat; this.GK11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK11.ForeColor = SystemColors.ActiveCaptionText; this.GK11.Location = new Point(15, 0x6a); this.GK11.Name = "GK11"; this.GK11.Size = new Size(40, 40); this.GK11.TabIndex = 0x7e; this.GK11.Text = "11"; this.GK11.TextAlign = ContentAlignment.TopLeft; this.GK11.UseVisualStyleBackColor = true; this.GK11.Click += new EventHandler(this.GK11_Click); this.GK40.BackgroundImageLayout = ImageLayout.Stretch; this.GK40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK40.FlatAppearance.BorderSize = 2; this.GK40.FlatAppearance.CheckedBackColor = Color.Black; this.GK40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK40.FlatStyle = FlatStyle.Flat; this.GK40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK40.ForeColor = SystemColors.ActiveCaptionText; this.GK40.Location = new Point(0xc6, 0x150); this.GK40.Name = "GK40"; this.GK40.Size = new Size(40, 40); this.GK40.TabIndex = 0x9b; this.GK40.Text = "40"; this.GK40.TextAlign = ContentAlignment.TopLeft; this.GK40.UseVisualStyleBackColor = true; this.GK40.Click += new EventHandler(this.GK40_Click); this.GK12.BackgroundImageLayout = ImageLayout.Stretch; this.GK12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK12.FlatAppearance.BorderSize = 2; this.GK12.FlatAppearance.CheckedBackColor = Color.Black; this.GK12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK12.FlatStyle = FlatStyle.Flat; this.GK12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK12.ForeColor = SystemColors.ActiveCaptionText; this.GK12.Location = new Point(0x3d, 0x6a); this.GK12.Name = "GK12"; this.GK12.Size = new Size(40, 40); this.GK12.TabIndex = 0x7f; this.GK12.Text = "12"; this.GK12.TextAlign = ContentAlignment.TopLeft; this.GK12.UseVisualStyleBackColor = true; this.GK12.Click += new EventHandler(this.GK12_Click); this.GK39.BackgroundImageLayout = ImageLayout.Stretch; this.GK39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK39.FlatAppearance.BorderSize = 2; this.GK39.FlatAppearance.CheckedBackColor = Color.Black; this.GK39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK39.FlatStyle = FlatStyle.Flat; this.GK39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK39.ForeColor = SystemColors.ActiveCaptionText; this.GK39.Location = new Point(0x99, 0x150); this.GK39.Name = "GK39"; this.GK39.Size = new Size(40, 40); this.GK39.TabIndex = 0x9a; this.GK39.Text = "39"; this.GK39.TextAlign = ContentAlignment.TopLeft; this.GK39.UseVisualStyleBackColor = true; this.GK39.Click += new EventHandler(this.GK39_Click); this.GK13.BackgroundImageLayout = ImageLayout.Stretch; this.GK13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK13.FlatAppearance.BorderSize = 2; this.GK13.FlatAppearance.CheckedBackColor = Color.Black; this.GK13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK13.FlatStyle = FlatStyle.Flat; this.GK13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK13.ForeColor = SystemColors.ActiveCaptionText; this.GK13.Location = new Point(0x6b, 0x6a); this.GK13.Name = "GK13"; this.GK13.Size = new Size(40, 40); this.GK13.TabIndex = 0x80; this.GK13.Text = "13"; this.GK13.TextAlign = ContentAlignment.TopLeft; this.GK13.UseVisualStyleBackColor = true; this.GK13.Click += new EventHandler(this.GK13_Click); this.GK38.BackgroundImageLayout = ImageLayout.Stretch; this.GK38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK38.FlatAppearance.BorderSize = 2; this.GK38.FlatAppearance.CheckedBackColor = Color.Black; this.GK38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK38.FlatStyle = FlatStyle.Flat; this.GK38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK38.ForeColor = SystemColors.ActiveCaptionText; this.GK38.Location = new Point(0x6b, 0x150); this.GK38.Name = "GK38"; this.GK38.Size = new Size(40, 40); this.GK38.TabIndex = 0x99; this.GK38.Text = "38"; this.GK38.TextAlign = ContentAlignment.TopLeft; this.GK38.UseVisualStyleBackColor = true; this.GK38.Click += new EventHandler(this.GK38_Click); this.GK14.BackgroundImageLayout = ImageLayout.Stretch; this.GK14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK14.FlatAppearance.BorderSize = 2; this.GK14.FlatAppearance.CheckedBackColor = Color.Black; this.GK14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK14.FlatStyle = FlatStyle.Flat; this.GK14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK14.ForeColor = SystemColors.ActiveCaptionText; this.GK14.Location = new Point(0x99, 0x6a); this.GK14.Name = "GK14"; this.GK14.Size = new Size(40, 40); this.GK14.TabIndex = 0x81; this.GK14.Text = "14"; this.GK14.TextAlign = ContentAlignment.TopLeft; this.GK14.UseVisualStyleBackColor = true; this.GK14.Click += new EventHandler(this.GK14_Click); this.GK37.BackgroundImageLayout = ImageLayout.Stretch; this.GK37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK37.FlatAppearance.BorderSize = 2; this.GK37.FlatAppearance.CheckedBackColor = Color.Black; this.GK37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK37.FlatStyle = FlatStyle.Flat; this.GK37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK37.ForeColor = SystemColors.ActiveCaptionText; this.GK37.Location = new Point(0x3d, 0x150); this.GK37.Name = "GK37"; this.GK37.Size = new Size(40, 40); this.GK37.TabIndex = 0x98; this.GK37.Text = "37"; this.GK37.TextAlign = ContentAlignment.TopLeft; this.GK37.UseVisualStyleBackColor = true; this.GK37.Click += new EventHandler(this.GK37_Click); this.GK15.BackgroundImageLayout = ImageLayout.Stretch; this.GK15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK15.FlatAppearance.BorderSize = 2; this.GK15.FlatAppearance.CheckedBackColor = Color.Black; this.GK15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK15.FlatStyle = FlatStyle.Flat; this.GK15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK15.ForeColor = SystemColors.ActiveCaptionText; this.GK15.Location = new Point(0xc6, 0x6a); this.GK15.Name = "GK15"; this.GK15.Size = new Size(40, 40); this.GK15.TabIndex = 130; this.GK15.Text = "15"; this.GK15.TextAlign = ContentAlignment.TopLeft; this.GK15.UseVisualStyleBackColor = true; this.GK15.Click += new EventHandler(this.GK15_Click); this.GK36.BackgroundImageLayout = ImageLayout.Stretch; this.GK36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK36.FlatAppearance.BorderSize = 2; this.GK36.FlatAppearance.CheckedBackColor = Color.Black; this.GK36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK36.FlatStyle = FlatStyle.Flat; this.GK36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK36.ForeColor = SystemColors.ActiveCaptionText; this.GK36.Location = new Point(15, 0x150); this.GK36.Name = "GK36"; this.GK36.Size = new Size(40, 40); this.GK36.TabIndex = 0x97; this.GK36.Text = "36"; this.GK36.TextAlign = ContentAlignment.TopLeft; this.GK36.UseVisualStyleBackColor = true; this.GK36.Click += new EventHandler(this.GK36_Click); this.GK16.BackgroundImageLayout = ImageLayout.Stretch; this.GK16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK16.FlatAppearance.BorderSize = 2; this.GK16.FlatAppearance.CheckedBackColor = Color.Black; this.GK16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK16.FlatStyle = FlatStyle.Flat; this.GK16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK16.ForeColor = SystemColors.ActiveCaptionText; this.GK16.Location = new Point(15, 0x98); this.GK16.Name = "GK16"; this.GK16.Size = new Size(40, 40); this.GK16.TabIndex = 0x83; this.GK16.Text = "16"; this.GK16.TextAlign = ContentAlignment.TopLeft; this.GK16.UseVisualStyleBackColor = true; this.GK16.Click += new EventHandler(this.GK16_Click); this.GK35.BackgroundImageLayout = ImageLayout.Stretch; this.GK35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK35.FlatAppearance.BorderSize = 2; this.GK35.FlatAppearance.CheckedBackColor = Color.Black; this.GK35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK35.FlatStyle = FlatStyle.Flat; this.GK35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK35.ForeColor = SystemColors.ActiveCaptionText; this.GK35.Location = new Point(0xc6, 290); this.GK35.Name = "GK35"; this.GK35.Size = new Size(40, 40); this.GK35.TabIndex = 150; this.GK35.Text = "35"; this.GK35.TextAlign = ContentAlignment.TopLeft; this.GK35.UseVisualStyleBackColor = true; this.GK35.Click += new EventHandler(this.GK35_Click); this.GK17.BackgroundImageLayout = ImageLayout.Stretch; this.GK17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK17.FlatAppearance.BorderSize = 2; this.GK17.FlatAppearance.CheckedBackColor = Color.Black; this.GK17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK17.FlatStyle = FlatStyle.Flat; this.GK17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK17.ForeColor = SystemColors.ActiveCaptionText; this.GK17.Location = new Point(0x3d, 0x98); this.GK17.Name = "GK17"; this.GK17.Size = new Size(40, 40); this.GK17.TabIndex = 0x84; this.GK17.Text = "17"; this.GK17.TextAlign = ContentAlignment.TopLeft; this.GK17.UseVisualStyleBackColor = true; this.GK17.Click += new EventHandler(this.GK17_Click); this.GK34.BackgroundImageLayout = ImageLayout.Stretch; this.GK34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK34.FlatAppearance.BorderSize = 2; this.GK34.FlatAppearance.CheckedBackColor = Color.Black; this.GK34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK34.FlatStyle = FlatStyle.Flat; this.GK34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK34.ForeColor = SystemColors.ActiveCaptionText; this.GK34.Location = new Point(0x99, 290); this.GK34.Name = "GK34"; this.GK34.Size = new Size(40, 40); this.GK34.TabIndex = 0x95; this.GK34.Text = "34"; this.GK34.TextAlign = ContentAlignment.TopLeft; this.GK34.UseVisualStyleBackColor = true; this.GK34.Click += new EventHandler(this.GK34_Click); this.GK18.BackgroundImageLayout = ImageLayout.Stretch; this.GK18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK18.FlatAppearance.BorderSize = 2; this.GK18.FlatAppearance.CheckedBackColor = Color.Black; this.GK18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK18.FlatStyle = FlatStyle.Flat; this.GK18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK18.ForeColor = SystemColors.ActiveCaptionText; this.GK18.Location = new Point(0x6b, 0x98); this.GK18.Name = "GK18"; this.GK18.Size = new Size(40, 40); this.GK18.TabIndex = 0x85; this.GK18.Text = "18"; this.GK18.TextAlign = ContentAlignment.TopLeft; this.GK18.UseVisualStyleBackColor = true; this.GK18.Click += new EventHandler(this.GK18_Click); this.GK33.BackgroundImageLayout = ImageLayout.Stretch; this.GK33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK33.FlatAppearance.BorderSize = 2; this.GK33.FlatAppearance.CheckedBackColor = Color.Black; this.GK33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK33.FlatStyle = FlatStyle.Flat; this.GK33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK33.ForeColor = SystemColors.ActiveCaptionText; this.GK33.Location = new Point(0x6b, 290); this.GK33.Name = "GK33"; this.GK33.Size = new Size(40, 40); this.GK33.TabIndex = 0x94; this.GK33.Text = "33"; this.GK33.TextAlign = ContentAlignment.TopLeft; this.GK33.UseVisualStyleBackColor = true; this.GK33.Click += new EventHandler(this.GK33_Click); this.GK19.BackgroundImageLayout = ImageLayout.Stretch; this.GK19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK19.FlatAppearance.BorderSize = 2; this.GK19.FlatAppearance.CheckedBackColor = Color.Black; this.GK19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK19.FlatStyle = FlatStyle.Flat; this.GK19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK19.ForeColor = SystemColors.ActiveCaptionText; this.GK19.Location = new Point(0x99, 0x98); this.GK19.Name = "GK19"; this.GK19.Size = new Size(40, 40); this.GK19.TabIndex = 0x86; this.GK19.Text = "19"; this.GK19.TextAlign = ContentAlignment.TopLeft; this.GK19.UseVisualStyleBackColor = true; this.GK19.Click += new EventHandler(this.GK19_Click); this.GK32.BackgroundImageLayout = ImageLayout.Stretch; this.GK32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK32.FlatAppearance.BorderSize = 2; this.GK32.FlatAppearance.CheckedBackColor = Color.Black; this.GK32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK32.FlatStyle = FlatStyle.Flat; this.GK32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK32.ForeColor = SystemColors.ActiveCaptionText; this.GK32.Location = new Point(0x3d, 290); this.GK32.Name = "GK32"; this.GK32.Size = new Size(40, 40); this.GK32.TabIndex = 0x93; this.GK32.Text = "32"; this.GK32.TextAlign = ContentAlignment.TopLeft; this.GK32.UseVisualStyleBackColor = true; this.GK32.Click += new EventHandler(this.GK32_Click); this.GK20.BackgroundImageLayout = ImageLayout.Stretch; this.GK20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK20.FlatAppearance.BorderSize = 2; this.GK20.FlatAppearance.CheckedBackColor = Color.Black; this.GK20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK20.FlatStyle = FlatStyle.Flat; this.GK20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK20.ForeColor = SystemColors.ActiveCaptionText; this.GK20.Location = new Point(0xc6, 0x98); this.GK20.Name = "GK20"; this.GK20.Size = new Size(40, 40); this.GK20.TabIndex = 0x87; this.GK20.Text = "20"; this.GK20.TextAlign = ContentAlignment.TopLeft; this.GK20.UseVisualStyleBackColor = true; this.GK20.Click += new EventHandler(this.GK20_Click); this.GK31.BackgroundImageLayout = ImageLayout.Stretch; this.GK31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK31.FlatAppearance.BorderSize = 2; this.GK31.FlatAppearance.CheckedBackColor = Color.Black; this.GK31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK31.FlatStyle = FlatStyle.Flat; this.GK31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK31.ForeColor = SystemColors.ActiveCaptionText; this.GK31.Location = new Point(15, 290); this.GK31.Name = "GK31"; this.GK31.Size = new Size(40, 40); this.GK31.TabIndex = 0x92; this.GK31.Text = "31"; this.GK31.TextAlign = ContentAlignment.TopLeft; this.GK31.UseVisualStyleBackColor = true; this.GK31.Click += new EventHandler(this.GK31_Click); this.GK21.BackgroundImageLayout = ImageLayout.Stretch; this.GK21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK21.FlatAppearance.BorderSize = 2; this.GK21.FlatAppearance.CheckedBackColor = Color.Black; this.GK21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.GK21.FlatStyle = FlatStyle.Flat; this.GK21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK21.ForeColor = SystemColors.ActiveCaptionText; this.GK21.Location = new Point(15, 0xc6); this.GK21.Name = "GK21"; this.GK21.Size = new Size(40, 40); this.GK21.TabIndex = 0x88; this.GK21.Text = "21"; this.GK21.TextAlign = ContentAlignment.TopLeft; this.GK21.UseVisualStyleBackColor = true; this.GK21.Click += new EventHandler(this.GK21_Click); this.GK30.BackgroundImageLayout = ImageLayout.Stretch; this.GK30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK30.FlatAppearance.BorderSize = 2; this.GK30.FlatAppearance.CheckedBackColor = Color.Black; this.GK30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK30.FlatStyle = FlatStyle.Flat; this.GK30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK30.ForeColor = SystemColors.ActiveCaptionText; this.GK30.Location = new Point(0xc6, 0xf4); this.GK30.Name = "GK30"; this.GK30.Size = new Size(40, 40); this.GK30.TabIndex = 0x91; this.GK30.Text = "30"; this.GK30.TextAlign = ContentAlignment.TopLeft; this.GK30.UseVisualStyleBackColor = true; this.GK30.Click += new EventHandler(this.GK30_Click); this.GK22.BackgroundImageLayout = ImageLayout.Stretch; this.GK22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK22.FlatAppearance.BorderSize = 2; this.GK22.FlatAppearance.CheckedBackColor = Color.Black; this.GK22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK22.FlatStyle = FlatStyle.Flat; this.GK22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK22.ForeColor = SystemColors.ActiveCaptionText; this.GK22.Location = new Point(0x3d, 0xc6); this.GK22.Name = "GK22"; this.GK22.Size = new Size(40, 40); this.GK22.TabIndex = 0x89; this.GK22.Text = "22"; this.GK22.TextAlign = ContentAlignment.TopLeft; this.GK22.UseVisualStyleBackColor = true; this.GK22.Click += new EventHandler(this.GK22_Click); this.GK29.BackgroundImageLayout = ImageLayout.Stretch; this.GK29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK29.FlatAppearance.BorderSize = 2; this.GK29.FlatAppearance.CheckedBackColor = Color.Black; this.GK29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK29.FlatStyle = FlatStyle.Flat; this.GK29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK29.ForeColor = SystemColors.ActiveCaptionText; this.GK29.Location = new Point(0x99, 0xf4); this.GK29.Name = "GK29"; this.GK29.Size = new Size(40, 40); this.GK29.TabIndex = 0x90; this.GK29.Text = "29"; this.GK29.TextAlign = ContentAlignment.TopLeft; this.GK29.UseVisualStyleBackColor = true; this.GK29.Click += new EventHandler(this.GK29_Click); this.GK23.BackgroundImageLayout = ImageLayout.Stretch; this.GK23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK23.FlatAppearance.BorderSize = 2; this.GK23.FlatAppearance.CheckedBackColor = Color.Black; this.GK23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK23.FlatStyle = FlatStyle.Flat; this.GK23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK23.ForeColor = SystemColors.ActiveCaptionText; this.GK23.Location = new Point(0x6b, 0xc6); this.GK23.Name = "GK23"; this.GK23.Size = new Size(40, 40); this.GK23.TabIndex = 0x8a; this.GK23.Text = "23"; this.GK23.TextAlign = ContentAlignment.TopLeft; this.GK23.UseVisualStyleBackColor = true; this.GK23.Click += new EventHandler(this.GK23_Click); this.GK28.BackgroundImageLayout = ImageLayout.Stretch; this.GK28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK28.FlatAppearance.BorderSize = 2; this.GK28.FlatAppearance.CheckedBackColor = Color.Black; this.GK28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK28.FlatStyle = FlatStyle.Flat; this.GK28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK28.ForeColor = SystemColors.ActiveCaptionText; this.GK28.Location = new Point(0x6b, 0xf4); this.GK28.Name = "GK28"; this.GK28.Size = new Size(40, 40); this.GK28.TabIndex = 0x8f; this.GK28.Text = "28"; this.GK28.TextAlign = ContentAlignment.TopLeft; this.GK28.UseVisualStyleBackColor = true; this.GK28.Click += new EventHandler(this.GK28_Click); this.GK24.BackgroundImageLayout = ImageLayout.Stretch; this.GK24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK24.FlatAppearance.BorderSize = 2; this.GK24.FlatAppearance.CheckedBackColor = Color.Black; this.GK24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK24.FlatStyle = FlatStyle.Flat; this.GK24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK24.ForeColor = SystemColors.ActiveCaptionText; this.GK24.Location = new Point(0x99, 0xc6); this.GK24.Name = "GK24"; this.GK24.Size = new Size(40, 40); this.GK24.TabIndex = 0x8b; this.GK24.Text = "24"; this.GK24.TextAlign = ContentAlignment.TopLeft; this.GK24.UseVisualStyleBackColor = true; this.GK24.Click += new EventHandler(this.GK24_Click); this.GK27.BackgroundImageLayout = ImageLayout.Stretch; this.GK27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK27.FlatAppearance.BorderSize = 2; this.GK27.FlatAppearance.CheckedBackColor = Color.Black; this.GK27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK27.FlatStyle = FlatStyle.Flat; this.GK27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK27.ForeColor = SystemColors.ActiveCaptionText; this.GK27.Location = new Point(0x3d, 0xf4); this.GK27.Name = "GK27"; this.GK27.Size = new Size(40, 40); this.GK27.TabIndex = 0x8e; this.GK27.Text = "27"; this.GK27.TextAlign = ContentAlignment.TopLeft; this.GK27.UseVisualStyleBackColor = true; this.GK27.Click += new EventHandler(this.GK27_Click); this.GK25.BackgroundImageLayout = ImageLayout.Stretch; this.GK25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK25.FlatAppearance.BorderSize = 2; this.GK25.FlatAppearance.CheckedBackColor = Color.Black; this.GK25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK25.FlatStyle = FlatStyle.Flat; this.GK25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK25.ForeColor = SystemColors.ActiveCaptionText; this.GK25.Location = new Point(0xc6, 0xc6); this.GK25.Name = "GK25"; this.GK25.Size = new Size(40, 40); this.GK25.TabIndex = 140; this.GK25.Text = "25"; this.GK25.TextAlign = ContentAlignment.TopLeft; this.GK25.UseVisualStyleBackColor = true; this.GK25.Click += new EventHandler(this.GK25_Click); this.GK26.BackgroundImageLayout = ImageLayout.Stretch; this.GK26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.GK26.FlatAppearance.BorderSize = 2; this.GK26.FlatAppearance.CheckedBackColor = Color.Black; this.GK26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.GK26.FlatStyle = FlatStyle.Flat; this.GK26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.GK26.ForeColor = SystemColors.ActiveCaptionText; this.GK26.Location = new Point(15, 0xf4); this.GK26.Name = "GK26"; this.GK26.Size = new Size(40, 40); this.GK26.TabIndex = 0x8d; this.GK26.Text = "26"; this.GK26.TextAlign = ContentAlignment.TopLeft; this.GK26.UseVisualStyleBackColor = true; this.GK26.Click += new EventHandler(this.GK26_Click); this.refr4GK.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refr4GK.BackColor = Color.White; this.refr4GK.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refr4GK.Location = new Point(0x4d, 0x199); this.refr4GK.Multiline = true; this.refr4GK.Name = "refr4GK"; this.refr4GK.ReadOnly = true; this.refr4GK.ScrollBars = ScrollBars.Vertical; this.refr4GK.Size = new Size(0x2a5, 0x7c); this.refr4GK.TabIndex = 0x52; this.panel5.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel5.BackColor = Color.Transparent; this.panel5.Controls.Add(this.GKopd); this.panel5.Controls.Add(this.GKopc); this.panel5.Controls.Add(this.GKopb); this.panel5.Controls.Add(this.GKopa); this.panel5.Controls.Add(this.metroRadioButton9); this.panel5.Controls.Add(this.metroRadioButton10); this.panel5.Controls.Add(this.metroRadioButton11); this.panel5.Controls.Add(this.metroRadioButton12); this.panel5.Location = new Point(0x4d, 0x10f); this.panel5.Name = "panel5"; this.panel5.Size = new Size(0x2a5, 0x84); this.panel5.TabIndex = 0x51; this.GKopd.AutoSize = true; this.GKopd.Font = new Font("Britannic Bold", 11.25f); this.GKopd.Location = new Point(0x38, 0x6f); this.GKopd.Name = "GKopd"; this.GKopd.Size = new Size(0x24, 0x10); this.GKopd.TabIndex = 0x73; this.GKopd.Text = "OpD"; this.GKopc.AutoSize = true; this.GKopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.GKopc.Location = new Point(0x38, 0x4d); this.GKopc.Name = "GKopc"; this.GKopc.Size = new Size(0x23, 0x10); this.GKopc.TabIndex = 0x72; this.GKopc.Text = "OpC"; this.GKopb.AutoSize = true; this.GKopb.Font = new Font("Britannic Bold", 11.25f); this.GKopb.Location = new Point(0x36, 0x2d); this.GKopb.Name = "GKopb"; this.GKopb.Size = new Size(0x23, 0x10); this.GKopb.TabIndex = 0x71; this.GKopb.Text = "OpB"; this.GKopa.AutoSize = true; this.GKopa.Font = new Font("Britannic Bold", 11.25f); this.GKopa.Location = new Point(0x36, 10); this.GKopa.Name = "GKopa"; this.GKopa.Size = new Size(0x22, 0x10); this.GKopa.TabIndex = 0x70; this.GKopa.Text = "OpA"; this.metroRadioButton9.AutoSize = true; this.metroRadioButton9.Location = new Point(0x11, 11); this.metroRadioButton9.Name = "metroRadioButton9"; this.metroRadioButton9.Size = new Size(0x1f, 15); this.metroRadioButton9.Style = MetroColorStyle.Blue; this.metroRadioButton9.TabIndex = 0x1b; this.metroRadioButton9.TabStop = true; this.metroRadioButton9.Text = "A"; this.metroRadioButton9.Theme = MetroThemeStyle.Light; this.metroRadioButton9.UseSelectable = true; this.metroRadioButton9.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton9.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton10.AutoSize = true; this.metroRadioButton10.Location = new Point(0x11, 0x2e); this.metroRadioButton10.Name = "metroRadioButton10"; this.metroRadioButton10.Size = new Size(30, 15); this.metroRadioButton10.Style = MetroColorStyle.Blue; this.metroRadioButton10.TabIndex = 0x1c; this.metroRadioButton10.TabStop = true; this.metroRadioButton10.Text = "B"; this.metroRadioButton10.Theme = MetroThemeStyle.Light; this.metroRadioButton10.UseSelectable = true; this.metroRadioButton10.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton10.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton11.AutoSize = true; this.metroRadioButton11.Location = new Point(0x11, 0x4d); this.metroRadioButton11.Name = "metroRadioButton11"; this.metroRadioButton11.Size = new Size(0x1f, 15); this.metroRadioButton11.Style = MetroColorStyle.Blue; this.metroRadioButton11.TabIndex = 0x1d; this.metroRadioButton11.TabStop = true; this.metroRadioButton11.Text = "C"; this.metroRadioButton11.Theme = MetroThemeStyle.Light; this.metroRadioButton11.UseSelectable = true; this.metroRadioButton11.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton11.Click += new EventHandler(this.radioButton_Click4GK); this.metroRadioButton12.AutoSize = true; this.metroRadioButton12.Location = new Point(0x11, 0x6f); this.metroRadioButton12.Name = "metroRadioButton12"; this.metroRadioButton12.Size = new Size(0x1f, 15); this.metroRadioButton12.Style = MetroColorStyle.Blue; this.metroRadioButton12.TabIndex = 30; this.metroRadioButton12.TabStop = true; this.metroRadioButton12.Text = "D"; this.metroRadioButton12.Theme = MetroThemeStyle.Light; this.metroRadioButton12.UseSelectable = true; this.metroRadioButton12.CheckedChanged += new EventHandler(this.rbchk4gk); this.metroRadioButton12.Click += new EventHandler(this.radioButton_Click4GK); this.sec3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec3.BackColor = Color.White; this.sec3.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec3.Location = new Point(0x4d, 3); this.sec3.Multiline = true; this.sec3.Name = "sec3"; this.sec3.ReadOnly = true; this.sec3.ScrollBars = ScrollBars.Vertical; this.sec3.Size = new Size(0x2a5, 0x106); this.sec3.TabIndex = 0x18; this.RSNtab.Controls.Add(this.markandnextRSN); this.RSNtab.Controls.Add(this.panel16); this.RSNtab.Controls.Add(this.label6); this.RSNtab.Controls.Add(this.savennextRSN); this.RSNtab.Controls.Add(this.panel9); this.RSNtab.Controls.Add(this.refrRSN); this.RSNtab.Controls.Add(this.panel10); this.RSNtab.Controls.Add(this.sec4); this.RSNtab.Controls.Add(this.panel20); this.RSNtab.HorizontalScrollbarBarColor = true; this.RSNtab.HorizontalScrollbarHighlightOnWheel = false; this.RSNtab.HorizontalScrollbarSize = 10; this.RSNtab.Location = new Point(4, 0x23); this.RSNtab.Name = "RSNtab"; this.RSNtab.Size = new Size(0x3f8, 0x2d9); this.RSNtab.Style = MetroColorStyle.Blue; this.RSNtab.TabIndex = 3; this.RSNtab.Text = "Reasoning"; this.RSNtab.Theme = MetroThemeStyle.Light; this.RSNtab.VerticalScrollbarBarColor = true; this.RSNtab.VerticalScrollbarHighlightOnWheel = false; this.RSNtab.VerticalScrollbarSize = 10; this.panel20.BackColor = Color.Transparent; this.panel20.Controls.Add(this.textBox13); this.panel20.Controls.Add(this.chkansRSN); this.panel20.Controls.Add(this.metroLabel13); this.panel20.Controls.Add(this.ans4RSN); this.panel20.Controls.Add(this.metroLabel14); this.panel20.Controls.Add(this.secnameRSN); this.panel20.Controls.Add(this.metroLabel15); this.panel20.Controls.Add(this.metroLabel16); this.panel20.Location = new Point(0x354, 6); this.panel20.Name = "panel20"; this.panel20.Size = new Size(0x90, 270); this.panel20.TabIndex = 0x66; this.panel20.Visible = false; this.textBox13.Location = new Point(0x18, 0x13); this.textBox13.Multiline = true; this.textBox13.Name = "textBox13"; this.textBox13.Size = new Size(0x18, 0x1b); this.textBox13.TabIndex = 0x5b; this.textBox13.Text = "1"; this.chkansRSN.Location = new Point(0x18, 0x34); this.chkansRSN.Name = "chkansRSN"; this.chkansRSN.Size = new Size(40, 20); this.chkansRSN.TabIndex = 90; this.metroLabel13.AutoSize = true; this.metroLabel13.FontWeight = MetroLabelWeight.Bold; this.metroLabel13.Location = new Point(0x45, 0xc5); this.metroLabel13.Name = "metroLabel13"; this.metroLabel13.Size = new Size(0x3d, 0x13); this.metroLabel13.Style = MetroColorStyle.Black; this.metroLabel13.TabIndex = 0x17; this.metroLabel13.Text = "option4"; this.metroLabel13.Theme = MetroThemeStyle.Light; this.metroLabel13.UseStyleColors = true; this.ans4RSN.Location = new Point(0x5e, 0x34); this.ans4RSN.Name = "ans4RSN"; this.ans4RSN.Size = new Size(40, 20); this.ans4RSN.TabIndex = 0x5d; this.metroLabel14.AutoSize = true; this.metroLabel14.FontWeight = MetroLabelWeight.Bold; this.metroLabel14.Location = new Point(0x45, 0xa6); this.metroLabel14.Name = "metroLabel14"; this.metroLabel14.Size = new Size(0x3d, 0x13); this.metroLabel14.Style = MetroColorStyle.Black; this.metroLabel14.TabIndex = 0x18; this.metroLabel14.Text = "option3"; this.metroLabel14.Theme = MetroThemeStyle.Light; this.metroLabel14.UseStyleColors = true; this.secnameRSN.AutoSize = true; this.secnameRSN.Location = new Point(0x47, 0x13); this.secnameRSN.Name = "secnameRSN"; this.secnameRSN.Size = new Size(30, 13); this.secnameRSN.TabIndex = 0x5e; this.secnameRSN.Text = "RSN"; this.metroLabel15.AutoSize = true; this.metroLabel15.FontWeight = MetroLabelWeight.Bold; this.metroLabel15.Location = new Point(0x36, 0x8e); this.metroLabel15.Name = "metroLabel15"; this.metroLabel15.Size = new Size(0x3d, 0x13); this.metroLabel15.Style = MetroColorStyle.Black; this.metroLabel15.TabIndex = 0x19; this.metroLabel15.Text = "option2"; this.metroLabel15.Theme = MetroThemeStyle.Light; this.metroLabel15.UseStyleColors = true; this.metroLabel16.AutoSize = true; this.metroLabel16.FontWeight = MetroLabelWeight.Bold; this.metroLabel16.Location = new Point(0x36, 0x7b); this.metroLabel16.Name = "metroLabel16"; this.metroLabel16.Size = new Size(0x3d, 0x13); this.metroLabel16.Style = MetroColorStyle.Black; this.metroLabel16.TabIndex = 0x1a; this.metroLabel16.Text = "option1"; this.metroLabel16.Theme = MetroThemeStyle.Light; this.metroLabel16.UseStyleColors = true; this.markandnextRSN.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextRSN.Location = new Point(0x2f5, 0x196); this.markandnextRSN.Name = "markandnextRSN"; this.markandnextRSN.Size = new Size(0x79, 0x2d); this.markandnextRSN.Style = MetroColorStyle.Blue; this.markandnextRSN.TabIndex = 0x65; this.markandnextRSN.Text = "Mark and Next"; this.markandnextRSN.Theme = MetroThemeStyle.Light; this.markandnextRSN.UseSelectable = true; this.markandnextRSN.Click += new EventHandler(this.markandnextRSN_Click); this.panel16.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel16.BackColor = SystemColors.InactiveCaptionText; this.panel16.Controls.Add(this.metroLabel37); this.panel16.Controls.Add(this.pictureBox14); this.panel16.Controls.Add(this.metroLabel38); this.panel16.Controls.Add(this.metroLabel39); this.panel16.Controls.Add(this.metroLabel40); this.panel16.Controls.Add(this.pictureBox15); this.panel16.Controls.Add(this.pictureBox16); this.panel16.Controls.Add(this.pictureBox17); this.panel16.Location = new Point(0x2f5, 0x1c6); this.panel16.Name = "panel16"; this.panel16.Size = new Size(0x106, 0xb2); this.panel16.TabIndex = 100; this.metroLabel37.AutoSize = true; this.metroLabel37.BackColor = Color.Transparent; this.metroLabel37.FontWeight = MetroLabelWeight.Bold; this.metroLabel37.Location = new Point(0x3b, 0x94); this.metroLabel37.Name = "metroLabel37"; this.metroLabel37.Size = new Size(0x8b, 0x13); this.metroLabel37.Style = MetroColorStyle.Purple; this.metroLabel37.TabIndex = 0x65; this.metroLabel37.Text = "Marked For Review"; this.metroLabel37.Theme = MetroThemeStyle.Dark; this.metroLabel37.UseCustomBackColor = true; this.metroLabel37.UseStyleColors = true; this.pictureBox14.BackColor = Color.White; this.pictureBox14.Image = Resources.rvw; this.pictureBox14.Location = new Point(3, 0x8f); this.pictureBox14.Name = "pictureBox14"; this.pictureBox14.Size = new Size(30, 30); this.pictureBox14.TabIndex = 100; this.pictureBox14.TabStop = false; this.metroLabel38.AutoSize = true; this.metroLabel38.BackColor = Color.Transparent; this.metroLabel38.FontWeight = MetroLabelWeight.Bold; this.metroLabel38.Location = new Point(60, 0x63); this.metroLabel38.Name = "metroLabel38"; this.metroLabel38.Size = new Size(0x53, 0x13); this.metroLabel38.Style = MetroColorStyle.White; this.metroLabel38.TabIndex = 0x63; this.metroLabel38.Text = "Not Visited"; this.metroLabel38.Theme = MetroThemeStyle.Dark; this.metroLabel38.UseCustomBackColor = true; this.metroLabel38.UseStyleColors = true; this.metroLabel39.AutoSize = true; this.metroLabel39.BackColor = Color.Transparent; this.metroLabel39.FontWeight = MetroLabelWeight.Bold; this.metroLabel39.Location = new Point(60, 0x35); this.metroLabel39.Name = "metroLabel39"; this.metroLabel39.Size = new Size(0x68, 0x13); this.metroLabel39.Style = MetroColorStyle.Red; this.metroLabel39.TabIndex = 0x62; this.metroLabel39.Text = "Not Answered"; this.metroLabel39.Theme = MetroThemeStyle.Dark; this.metroLabel39.UseCustomBackColor = true; this.metroLabel39.UseStyleColors = true; this.metroLabel40.AutoSize = true; this.metroLabel40.BackColor = Color.Transparent; this.metroLabel40.FontWeight = MetroLabelWeight.Bold; this.metroLabel40.Location = new Point(60, 7); this.metroLabel40.Name = "metroLabel40"; this.metroLabel40.Size = new Size(0x4b, 0x13); this.metroLabel40.Style = MetroColorStyle.Green; this.metroLabel40.TabIndex = 0x5f; this.metroLabel40.Text = "Answered"; this.metroLabel40.Theme = MetroThemeStyle.Dark; this.metroLabel40.UseCustomBackColor = true; this.metroLabel40.UseStyleColors = true; this.pictureBox15.BackColor = Color.White; this.pictureBox15.Location = new Point(3, 0x5f); this.pictureBox15.Name = "pictureBox15"; this.pictureBox15.Size = new Size(30, 30); this.pictureBox15.TabIndex = 0x61; this.pictureBox15.TabStop = false; this.pictureBox16.Image = Resources.unchk; this.pictureBox16.Location = new Point(3, 0x31); this.pictureBox16.Name = "pictureBox16"; this.pictureBox16.Size = new Size(30, 30); this.pictureBox16.TabIndex = 0x60; this.pictureBox16.TabStop = false; this.pictureBox17.Image = Resources.chk1; this.pictureBox17.Location = new Point(3, 3); this.pictureBox17.Name = "pictureBox17"; this.pictureBox17.Size = new Size(30, 30); this.pictureBox17.TabIndex = 0x5f; this.pictureBox17.TabStop = false; this.label6.AutoSize = true; this.label6.Location = new Point(10, 6); this.label6.Name = "label6"; this.label6.Size = new Size(0x3a, 13); this.label6.TabIndex = 0x5c; this.label6.Text = "Question 1"; this.savennextRSN.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextRSN.Location = new Point(0x37b, 0x196); this.savennextRSN.Name = "savennextRSN"; this.savennextRSN.Size = new Size(0x80, 0x2d); this.savennextRSN.Style = MetroColorStyle.Blue; this.savennextRSN.TabIndex = 0x59; this.savennextRSN.Text = "Save and Next"; this.savennextRSN.Theme = MetroThemeStyle.Light; this.savennextRSN.UseSelectable = true; this.savennextRSN.Click += new EventHandler(this.metroButton4_Click); this.panel9.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel9.AutoScroll = true; this.panel9.BackColor = Color.Transparent; this.panel9.BorderStyle = BorderStyle.FixedSingle; this.panel9.Controls.Add(this.RSN1); this.panel9.Controls.Add(this.RSN50); this.panel9.Controls.Add(this.RSN2); this.panel9.Controls.Add(this.RSN49); this.panel9.Controls.Add(this.RSN3); this.panel9.Controls.Add(this.RSN48); this.panel9.Controls.Add(this.RSN4); this.panel9.Controls.Add(this.RSN47); this.panel9.Controls.Add(this.RSN5); this.panel9.Controls.Add(this.RSN46); this.panel9.Controls.Add(this.RSN6); this.panel9.Controls.Add(this.RSN45); this.panel9.Controls.Add(this.RSN7); this.panel9.Controls.Add(this.RSN44); this.panel9.Controls.Add(this.RSN8); this.panel9.Controls.Add(this.RSN43); this.panel9.Controls.Add(this.RSN9); this.panel9.Controls.Add(this.RSN42); this.panel9.Controls.Add(this.RSN10); this.panel9.Controls.Add(this.RSN41); this.panel9.Controls.Add(this.RSN11); this.panel9.Controls.Add(this.RSN40); this.panel9.Controls.Add(this.RSN12); this.panel9.Controls.Add(this.RSN39); this.panel9.Controls.Add(this.RSN13); this.panel9.Controls.Add(this.RSN38); this.panel9.Controls.Add(this.RSN14); this.panel9.Controls.Add(this.RSN37); this.panel9.Controls.Add(this.RSN15); this.panel9.Controls.Add(this.RSN36); this.panel9.Controls.Add(this.RSN16); this.panel9.Controls.Add(this.RSN35); this.panel9.Controls.Add(this.RSN17); this.panel9.Controls.Add(this.RSN34); this.panel9.Controls.Add(this.RSN18); this.panel9.Controls.Add(this.RSN33); this.panel9.Controls.Add(this.RSN19); this.panel9.Controls.Add(this.RSN32); this.panel9.Controls.Add(this.RSN20); this.panel9.Controls.Add(this.RSN31); this.panel9.Controls.Add(this.RSN21); this.panel9.Controls.Add(this.RSN30); this.panel9.Controls.Add(this.RSN22); this.panel9.Controls.Add(this.RSN29); this.panel9.Controls.Add(this.RSN23); this.panel9.Controls.Add(this.RSN28); this.panel9.Controls.Add(this.RSN24); this.panel9.Controls.Add(this.RSN27); this.panel9.Controls.Add(this.RSN25); this.panel9.Controls.Add(this.RSN26); this.panel9.Location = new Point(0x2f5, 2); this.panel9.Name = "panel9"; this.panel9.Size = new Size(0x106, 0x191); this.panel9.TabIndex = 0x58; this.panel9.Paint += new PaintEventHandler(this.panel9_Paint); this.RSN1.BackgroundImageLayout = ImageLayout.Stretch; this.RSN1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN1.FlatAppearance.BorderSize = 2; this.RSN1.FlatAppearance.CheckedBackColor = Color.Black; this.RSN1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN1.FlatStyle = FlatStyle.Flat; this.RSN1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN1.ForeColor = SystemColors.ActiveCaptionText; this.RSN1.Location = new Point(15, 14); this.RSN1.Name = "RSN1"; this.RSN1.Size = new Size(40, 40); this.RSN1.TabIndex = 0x74; this.RSN1.Text = "1"; this.RSN1.TextAlign = ContentAlignment.TopLeft; this.RSN1.UseVisualStyleBackColor = true; this.RSN1.Click += new EventHandler(this.RSN1_Click); this.RSN50.BackgroundImageLayout = ImageLayout.Stretch; this.RSN50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN50.FlatAppearance.BorderSize = 2; this.RSN50.FlatAppearance.CheckedBackColor = Color.Black; this.RSN50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN50.FlatStyle = FlatStyle.Flat; this.RSN50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN50.ForeColor = SystemColors.ActiveCaptionText; this.RSN50.Location = new Point(0xc6, 0x1ac); this.RSN50.Name = "RSN50"; this.RSN50.Size = new Size(40, 40); this.RSN50.TabIndex = 0xa5; this.RSN50.Text = "50"; this.RSN50.TextAlign = ContentAlignment.TopLeft; this.RSN50.UseVisualStyleBackColor = true; this.RSN50.Click += new EventHandler(this.RSN50_Click); this.RSN2.BackgroundImageLayout = ImageLayout.Stretch; this.RSN2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN2.FlatAppearance.BorderSize = 2; this.RSN2.FlatAppearance.CheckedBackColor = Color.Black; this.RSN2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN2.FlatStyle = FlatStyle.Flat; this.RSN2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN2.ForeColor = SystemColors.ActiveCaptionText; this.RSN2.Location = new Point(0x3d, 14); this.RSN2.Name = "RSN2"; this.RSN2.Size = new Size(40, 40); this.RSN2.TabIndex = 0x75; this.RSN2.Text = "2"; this.RSN2.TextAlign = ContentAlignment.TopLeft; this.RSN2.UseVisualStyleBackColor = true; this.RSN2.Click += new EventHandler(this.RSN2_Click); this.RSN49.BackgroundImageLayout = ImageLayout.Stretch; this.RSN49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN49.FlatAppearance.BorderSize = 2; this.RSN49.FlatAppearance.CheckedBackColor = Color.Black; this.RSN49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN49.FlatStyle = FlatStyle.Flat; this.RSN49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN49.ForeColor = SystemColors.ActiveCaptionText; this.RSN49.Location = new Point(0x99, 0x1ac); this.RSN49.Name = "RSN49"; this.RSN49.Size = new Size(40, 40); this.RSN49.TabIndex = 0xa4; this.RSN49.Text = "49"; this.RSN49.TextAlign = ContentAlignment.TopLeft; this.RSN49.UseVisualStyleBackColor = true; this.RSN49.Click += new EventHandler(this.RSN49_Click); this.RSN3.BackgroundImageLayout = ImageLayout.Stretch; this.RSN3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN3.FlatAppearance.BorderSize = 2; this.RSN3.FlatAppearance.CheckedBackColor = Color.Black; this.RSN3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN3.FlatStyle = FlatStyle.Flat; this.RSN3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN3.ForeColor = SystemColors.ActiveCaptionText; this.RSN3.Location = new Point(0x6b, 14); this.RSN3.Name = "RSN3"; this.RSN3.Size = new Size(40, 40); this.RSN3.TabIndex = 0x76; this.RSN3.Text = "3"; this.RSN3.TextAlign = ContentAlignment.TopLeft; this.RSN3.UseVisualStyleBackColor = true; this.RSN3.Click += new EventHandler(this.RSN3_Click); this.RSN48.BackgroundImageLayout = ImageLayout.Stretch; this.RSN48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN48.FlatAppearance.BorderSize = 2; this.RSN48.FlatAppearance.CheckedBackColor = Color.Black; this.RSN48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN48.FlatStyle = FlatStyle.Flat; this.RSN48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN48.ForeColor = SystemColors.ActiveCaptionText; this.RSN48.Location = new Point(0x6b, 0x1ac); this.RSN48.Name = "RSN48"; this.RSN48.Size = new Size(40, 40); this.RSN48.TabIndex = 0xa3; this.RSN48.Text = "48"; this.RSN48.TextAlign = ContentAlignment.TopLeft; this.RSN48.UseVisualStyleBackColor = true; this.RSN48.Click += new EventHandler(this.RSN48_Click); this.RSN4.BackgroundImageLayout = ImageLayout.Stretch; this.RSN4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN4.FlatAppearance.BorderSize = 2; this.RSN4.FlatAppearance.CheckedBackColor = Color.Black; this.RSN4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN4.FlatStyle = FlatStyle.Flat; this.RSN4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN4.ForeColor = SystemColors.ActiveCaptionText; this.RSN4.Location = new Point(0x99, 14); this.RSN4.Name = "RSN4"; this.RSN4.Size = new Size(40, 40); this.RSN4.TabIndex = 0x77; this.RSN4.Text = "4"; this.RSN4.TextAlign = ContentAlignment.TopLeft; this.RSN4.UseVisualStyleBackColor = true; this.RSN4.Click += new EventHandler(this.RSN4_Click); this.RSN47.BackgroundImageLayout = ImageLayout.Stretch; this.RSN47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN47.FlatAppearance.BorderSize = 2; this.RSN47.FlatAppearance.CheckedBackColor = Color.Black; this.RSN47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN47.FlatStyle = FlatStyle.Flat; this.RSN47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN47.ForeColor = SystemColors.ActiveCaptionText; this.RSN47.Location = new Point(0x3d, 0x1ac); this.RSN47.Name = "RSN47"; this.RSN47.Size = new Size(40, 40); this.RSN47.TabIndex = 0xa2; this.RSN47.Text = "47"; this.RSN47.TextAlign = ContentAlignment.TopLeft; this.RSN47.UseVisualStyleBackColor = true; this.RSN47.Click += new EventHandler(this.RSN47_Click); this.RSN5.BackgroundImageLayout = ImageLayout.Stretch; this.RSN5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN5.FlatAppearance.BorderSize = 2; this.RSN5.FlatAppearance.CheckedBackColor = Color.Black; this.RSN5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN5.FlatStyle = FlatStyle.Flat; this.RSN5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN5.ForeColor = SystemColors.ActiveCaptionText; this.RSN5.Location = new Point(0xc6, 14); this.RSN5.Name = "RSN5"; this.RSN5.Size = new Size(40, 40); this.RSN5.TabIndex = 120; this.RSN5.Text = "5"; this.RSN5.TextAlign = ContentAlignment.TopLeft; this.RSN5.UseVisualStyleBackColor = true; this.RSN5.Click += new EventHandler(this.RSN5_Click); this.RSN46.BackgroundImageLayout = ImageLayout.Stretch; this.RSN46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN46.FlatAppearance.BorderSize = 2; this.RSN46.FlatAppearance.CheckedBackColor = Color.Black; this.RSN46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN46.FlatStyle = FlatStyle.Flat; this.RSN46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN46.ForeColor = SystemColors.ActiveCaptionText; this.RSN46.Location = new Point(15, 0x1ac); this.RSN46.Name = "RSN46"; this.RSN46.Size = new Size(40, 40); this.RSN46.TabIndex = 0xa1; this.RSN46.Text = "46"; this.RSN46.TextAlign = ContentAlignment.TopLeft; this.RSN46.UseVisualStyleBackColor = true; this.RSN46.Click += new EventHandler(this.RSN46_Click); this.RSN6.BackgroundImageLayout = ImageLayout.Stretch; this.RSN6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN6.FlatAppearance.BorderSize = 2; this.RSN6.FlatAppearance.CheckedBackColor = Color.Black; this.RSN6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN6.FlatStyle = FlatStyle.Flat; this.RSN6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN6.ForeColor = SystemColors.ActiveCaptionText; this.RSN6.Location = new Point(15, 60); this.RSN6.Name = "RSN6"; this.RSN6.Size = new Size(40, 40); this.RSN6.TabIndex = 0x79; this.RSN6.Text = "6"; this.RSN6.TextAlign = ContentAlignment.TopLeft; this.RSN6.UseVisualStyleBackColor = true; this.RSN6.Click += new EventHandler(this.RSN6_Click); this.RSN45.BackgroundImageLayout = ImageLayout.Stretch; this.RSN45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN45.FlatAppearance.BorderSize = 2; this.RSN45.FlatAppearance.CheckedBackColor = Color.Black; this.RSN45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN45.FlatStyle = FlatStyle.Flat; this.RSN45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN45.ForeColor = SystemColors.ActiveCaptionText; this.RSN45.Location = new Point(0xc6, 0x17e); this.RSN45.Name = "RSN45"; this.RSN45.Size = new Size(40, 40); this.RSN45.TabIndex = 160; this.RSN45.Text = "45"; this.RSN45.TextAlign = ContentAlignment.TopLeft; this.RSN45.UseVisualStyleBackColor = true; this.RSN45.Click += new EventHandler(this.RSN45_Click); this.RSN7.BackgroundImageLayout = ImageLayout.Stretch; this.RSN7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN7.FlatAppearance.BorderSize = 2; this.RSN7.FlatAppearance.CheckedBackColor = Color.Black; this.RSN7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN7.FlatStyle = FlatStyle.Flat; this.RSN7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN7.ForeColor = SystemColors.ActiveCaptionText; this.RSN7.Location = new Point(0x3d, 60); this.RSN7.Name = "RSN7"; this.RSN7.Size = new Size(40, 40); this.RSN7.TabIndex = 0x7a; this.RSN7.Text = "7"; this.RSN7.TextAlign = ContentAlignment.TopLeft; this.RSN7.UseVisualStyleBackColor = true; this.RSN7.Click += new EventHandler(this.RSN7_Click); this.RSN44.BackgroundImageLayout = ImageLayout.Stretch; this.RSN44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN44.FlatAppearance.BorderSize = 2; this.RSN44.FlatAppearance.CheckedBackColor = Color.Black; this.RSN44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN44.FlatStyle = FlatStyle.Flat; this.RSN44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN44.ForeColor = SystemColors.ActiveCaptionText; this.RSN44.Location = new Point(0x99, 0x17e); this.RSN44.Name = "RSN44"; this.RSN44.Size = new Size(40, 40); this.RSN44.TabIndex = 0x9f; this.RSN44.Text = "44"; this.RSN44.TextAlign = ContentAlignment.TopLeft; this.RSN44.UseVisualStyleBackColor = true; this.RSN44.Click += new EventHandler(this.RSN44_Click); this.RSN8.BackgroundImageLayout = ImageLayout.Stretch; this.RSN8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN8.FlatAppearance.BorderSize = 2; this.RSN8.FlatAppearance.CheckedBackColor = Color.Black; this.RSN8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN8.FlatStyle = FlatStyle.Flat; this.RSN8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN8.ForeColor = SystemColors.ActiveCaptionText; this.RSN8.Location = new Point(0x6b, 60); this.RSN8.Name = "RSN8"; this.RSN8.Size = new Size(40, 40); this.RSN8.TabIndex = 0x7b; this.RSN8.Text = "8"; this.RSN8.TextAlign = ContentAlignment.TopLeft; this.RSN8.UseVisualStyleBackColor = true; this.RSN8.Click += new EventHandler(this.RSN8_Click); this.RSN43.BackgroundImageLayout = ImageLayout.Stretch; this.RSN43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN43.FlatAppearance.BorderSize = 2; this.RSN43.FlatAppearance.CheckedBackColor = Color.Black; this.RSN43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN43.FlatStyle = FlatStyle.Flat; this.RSN43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN43.ForeColor = SystemColors.ActiveCaptionText; this.RSN43.Location = new Point(0x6b, 0x17e); this.RSN43.Name = "RSN43"; this.RSN43.Size = new Size(40, 40); this.RSN43.TabIndex = 0x9e; this.RSN43.Text = "43"; this.RSN43.TextAlign = ContentAlignment.TopLeft; this.RSN43.UseVisualStyleBackColor = true; this.RSN43.Click += new EventHandler(this.RSN43_Click); this.RSN9.BackgroundImageLayout = ImageLayout.Stretch; this.RSN9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN9.FlatAppearance.BorderSize = 2; this.RSN9.FlatAppearance.CheckedBackColor = Color.Black; this.RSN9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN9.FlatStyle = FlatStyle.Flat; this.RSN9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN9.ForeColor = SystemColors.ActiveCaptionText; this.RSN9.Location = new Point(0x99, 60); this.RSN9.Name = "RSN9"; this.RSN9.Size = new Size(40, 40); this.RSN9.TabIndex = 0x7c; this.RSN9.Text = "9"; this.RSN9.TextAlign = ContentAlignment.TopLeft; this.RSN9.UseVisualStyleBackColor = true; this.RSN9.Click += new EventHandler(this.RSN9_Click); this.RSN42.BackgroundImageLayout = ImageLayout.Stretch; this.RSN42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN42.FlatAppearance.BorderSize = 2; this.RSN42.FlatAppearance.CheckedBackColor = Color.Black; this.RSN42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN42.FlatStyle = FlatStyle.Flat; this.RSN42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN42.ForeColor = SystemColors.ActiveCaptionText; this.RSN42.Location = new Point(0x3d, 0x17e); this.RSN42.Name = "RSN42"; this.RSN42.Size = new Size(40, 40); this.RSN42.TabIndex = 0x9d; this.RSN42.Text = "42"; this.RSN42.TextAlign = ContentAlignment.TopLeft; this.RSN42.UseVisualStyleBackColor = true; this.RSN42.Click += new EventHandler(this.RSN42_Click); this.RSN10.BackgroundImageLayout = ImageLayout.Stretch; this.RSN10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN10.FlatAppearance.BorderSize = 2; this.RSN10.FlatAppearance.CheckedBackColor = Color.Black; this.RSN10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN10.FlatStyle = FlatStyle.Flat; this.RSN10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN10.ForeColor = SystemColors.ActiveCaptionText; this.RSN10.Location = new Point(0xc6, 60); this.RSN10.Name = "RSN10"; this.RSN10.Size = new Size(40, 40); this.RSN10.TabIndex = 0x7d; this.RSN10.Text = "10"; this.RSN10.TextAlign = ContentAlignment.TopLeft; this.RSN10.UseVisualStyleBackColor = true; this.RSN10.Click += new EventHandler(this.RSN10_Click); this.RSN41.BackgroundImageLayout = ImageLayout.Stretch; this.RSN41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN41.FlatAppearance.BorderSize = 2; this.RSN41.FlatAppearance.CheckedBackColor = Color.Black; this.RSN41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN41.FlatStyle = FlatStyle.Flat; this.RSN41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN41.ForeColor = SystemColors.ActiveCaptionText; this.RSN41.Location = new Point(15, 0x17e); this.RSN41.Name = "RSN41"; this.RSN41.Size = new Size(40, 40); this.RSN41.TabIndex = 0x9c; this.RSN41.Text = "41"; this.RSN41.TextAlign = ContentAlignment.TopLeft; this.RSN41.UseVisualStyleBackColor = true; this.RSN41.Click += new EventHandler(this.RSN41_Click); this.RSN11.BackgroundImageLayout = ImageLayout.Stretch; this.RSN11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN11.FlatAppearance.BorderSize = 2; this.RSN11.FlatAppearance.CheckedBackColor = Color.Black; this.RSN11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN11.FlatStyle = FlatStyle.Flat; this.RSN11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN11.ForeColor = SystemColors.ActiveCaptionText; this.RSN11.Location = new Point(15, 0x6a); this.RSN11.Name = "RSN11"; this.RSN11.Size = new Size(40, 40); this.RSN11.TabIndex = 0x7e; this.RSN11.Text = "11"; this.RSN11.TextAlign = ContentAlignment.TopLeft; this.RSN11.UseVisualStyleBackColor = true; this.RSN11.Click += new EventHandler(this.RSN11_Click); this.RSN40.BackgroundImageLayout = ImageLayout.Stretch; this.RSN40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN40.FlatAppearance.BorderSize = 2; this.RSN40.FlatAppearance.CheckedBackColor = Color.Black; this.RSN40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN40.FlatStyle = FlatStyle.Flat; this.RSN40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN40.ForeColor = SystemColors.ActiveCaptionText; this.RSN40.Location = new Point(0xc6, 0x150); this.RSN40.Name = "RSN40"; this.RSN40.Size = new Size(40, 40); this.RSN40.TabIndex = 0x9b; this.RSN40.Text = "40"; this.RSN40.TextAlign = ContentAlignment.TopLeft; this.RSN40.UseVisualStyleBackColor = true; this.RSN40.Click += new EventHandler(this.RSN40_Click); this.RSN12.BackgroundImageLayout = ImageLayout.Stretch; this.RSN12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN12.FlatAppearance.BorderSize = 2; this.RSN12.FlatAppearance.CheckedBackColor = Color.Black; this.RSN12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN12.FlatStyle = FlatStyle.Flat; this.RSN12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN12.ForeColor = SystemColors.ActiveCaptionText; this.RSN12.Location = new Point(0x3d, 0x6a); this.RSN12.Name = "RSN12"; this.RSN12.Size = new Size(40, 40); this.RSN12.TabIndex = 0x7f; this.RSN12.Text = "12"; this.RSN12.TextAlign = ContentAlignment.TopLeft; this.RSN12.UseVisualStyleBackColor = true; this.RSN12.Click += new EventHandler(this.RSN12_Click); this.RSN39.BackgroundImageLayout = ImageLayout.Stretch; this.RSN39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN39.FlatAppearance.BorderSize = 2; this.RSN39.FlatAppearance.CheckedBackColor = Color.Black; this.RSN39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN39.FlatStyle = FlatStyle.Flat; this.RSN39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN39.ForeColor = SystemColors.ActiveCaptionText; this.RSN39.Location = new Point(0x99, 0x150); this.RSN39.Name = "RSN39"; this.RSN39.Size = new Size(40, 40); this.RSN39.TabIndex = 0x9a; this.RSN39.Text = "39"; this.RSN39.TextAlign = ContentAlignment.TopLeft; this.RSN39.UseVisualStyleBackColor = true; this.RSN39.Click += new EventHandler(this.RSN39_Click); this.RSN13.BackgroundImageLayout = ImageLayout.Stretch; this.RSN13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN13.FlatAppearance.BorderSize = 2; this.RSN13.FlatAppearance.CheckedBackColor = Color.Black; this.RSN13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN13.FlatStyle = FlatStyle.Flat; this.RSN13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN13.ForeColor = SystemColors.ActiveCaptionText; this.RSN13.Location = new Point(0x6b, 0x6a); this.RSN13.Name = "RSN13"; this.RSN13.Size = new Size(40, 40); this.RSN13.TabIndex = 0x80; this.RSN13.Text = "13"; this.RSN13.TextAlign = ContentAlignment.TopLeft; this.RSN13.UseVisualStyleBackColor = true; this.RSN13.Click += new EventHandler(this.RSN13_Click); this.RSN38.BackgroundImageLayout = ImageLayout.Stretch; this.RSN38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN38.FlatAppearance.BorderSize = 2; this.RSN38.FlatAppearance.CheckedBackColor = Color.Black; this.RSN38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN38.FlatStyle = FlatStyle.Flat; this.RSN38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN38.ForeColor = SystemColors.ActiveCaptionText; this.RSN38.Location = new Point(0x6b, 0x150); this.RSN38.Name = "RSN38"; this.RSN38.Size = new Size(40, 40); this.RSN38.TabIndex = 0x99; this.RSN38.Text = "38"; this.RSN38.TextAlign = ContentAlignment.TopLeft; this.RSN38.UseVisualStyleBackColor = true; this.RSN38.Click += new EventHandler(this.RSN38_Click); this.RSN14.BackgroundImageLayout = ImageLayout.Stretch; this.RSN14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN14.FlatAppearance.BorderSize = 2; this.RSN14.FlatAppearance.CheckedBackColor = Color.Black; this.RSN14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN14.FlatStyle = FlatStyle.Flat; this.RSN14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN14.ForeColor = SystemColors.ActiveCaptionText; this.RSN14.Location = new Point(0x99, 0x6a); this.RSN14.Name = "RSN14"; this.RSN14.Size = new Size(40, 40); this.RSN14.TabIndex = 0x81; this.RSN14.Text = "14"; this.RSN14.TextAlign = ContentAlignment.TopLeft; this.RSN14.UseVisualStyleBackColor = true; this.RSN14.Click += new EventHandler(this.RSN14_Click); this.RSN37.BackgroundImageLayout = ImageLayout.Stretch; this.RSN37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN37.FlatAppearance.BorderSize = 2; this.RSN37.FlatAppearance.CheckedBackColor = Color.Black; this.RSN37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN37.FlatStyle = FlatStyle.Flat; this.RSN37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN37.ForeColor = SystemColors.ActiveCaptionText; this.RSN37.Location = new Point(0x3d, 0x150); this.RSN37.Name = "RSN37"; this.RSN37.Size = new Size(40, 40); this.RSN37.TabIndex = 0x98; this.RSN37.Text = "37"; this.RSN37.TextAlign = ContentAlignment.TopLeft; this.RSN37.UseVisualStyleBackColor = true; this.RSN37.Click += new EventHandler(this.RSN37_Click); this.RSN15.BackgroundImageLayout = ImageLayout.Stretch; this.RSN15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN15.FlatAppearance.BorderSize = 2; this.RSN15.FlatAppearance.CheckedBackColor = Color.Black; this.RSN15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN15.FlatStyle = FlatStyle.Flat; this.RSN15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN15.ForeColor = SystemColors.ActiveCaptionText; this.RSN15.Location = new Point(0xc6, 0x6a); this.RSN15.Name = "RSN15"; this.RSN15.Size = new Size(40, 40); this.RSN15.TabIndex = 130; this.RSN15.Text = "15"; this.RSN15.TextAlign = ContentAlignment.TopLeft; this.RSN15.UseVisualStyleBackColor = true; this.RSN15.Click += new EventHandler(this.RSN15_Click); this.RSN36.BackgroundImageLayout = ImageLayout.Stretch; this.RSN36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN36.FlatAppearance.BorderSize = 2; this.RSN36.FlatAppearance.CheckedBackColor = Color.Black; this.RSN36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN36.FlatStyle = FlatStyle.Flat; this.RSN36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN36.ForeColor = SystemColors.ActiveCaptionText; this.RSN36.Location = new Point(15, 0x150); this.RSN36.Name = "RSN36"; this.RSN36.Size = new Size(40, 40); this.RSN36.TabIndex = 0x97; this.RSN36.Text = "36"; this.RSN36.TextAlign = ContentAlignment.TopLeft; this.RSN36.UseVisualStyleBackColor = true; this.RSN36.Click += new EventHandler(this.RSN36_Click); this.RSN16.BackgroundImageLayout = ImageLayout.Stretch; this.RSN16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN16.FlatAppearance.BorderSize = 2; this.RSN16.FlatAppearance.CheckedBackColor = Color.Black; this.RSN16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN16.FlatStyle = FlatStyle.Flat; this.RSN16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN16.ForeColor = SystemColors.ActiveCaptionText; this.RSN16.Location = new Point(15, 0x98); this.RSN16.Name = "RSN16"; this.RSN16.Size = new Size(40, 40); this.RSN16.TabIndex = 0x83; this.RSN16.Text = "16"; this.RSN16.TextAlign = ContentAlignment.TopLeft; this.RSN16.UseVisualStyleBackColor = true; this.RSN16.Click += new EventHandler(this.RSN16_Click); this.RSN35.BackgroundImageLayout = ImageLayout.Stretch; this.RSN35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN35.FlatAppearance.BorderSize = 2; this.RSN35.FlatAppearance.CheckedBackColor = Color.Black; this.RSN35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN35.FlatStyle = FlatStyle.Flat; this.RSN35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN35.ForeColor = SystemColors.ActiveCaptionText; this.RSN35.Location = new Point(0xc6, 290); this.RSN35.Name = "RSN35"; this.RSN35.Size = new Size(40, 40); this.RSN35.TabIndex = 150; this.RSN35.Text = "35"; this.RSN35.TextAlign = ContentAlignment.TopLeft; this.RSN35.UseVisualStyleBackColor = true; this.RSN35.Click += new EventHandler(this.RSN35_Click); this.RSN17.BackgroundImageLayout = ImageLayout.Stretch; this.RSN17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN17.FlatAppearance.BorderSize = 2; this.RSN17.FlatAppearance.CheckedBackColor = Color.Black; this.RSN17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN17.FlatStyle = FlatStyle.Flat; this.RSN17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN17.ForeColor = SystemColors.ActiveCaptionText; this.RSN17.Location = new Point(0x3d, 0x98); this.RSN17.Name = "RSN17"; this.RSN17.Size = new Size(40, 40); this.RSN17.TabIndex = 0x84; this.RSN17.Text = "17"; this.RSN17.TextAlign = ContentAlignment.TopLeft; this.RSN17.UseVisualStyleBackColor = true; this.RSN17.Click += new EventHandler(this.RSN17_Click); this.RSN34.BackgroundImageLayout = ImageLayout.Stretch; this.RSN34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN34.FlatAppearance.BorderSize = 2; this.RSN34.FlatAppearance.CheckedBackColor = Color.Black; this.RSN34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN34.FlatStyle = FlatStyle.Flat; this.RSN34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN34.ForeColor = SystemColors.ActiveCaptionText; this.RSN34.Location = new Point(0x99, 290); this.RSN34.Name = "RSN34"; this.RSN34.Size = new Size(40, 40); this.RSN34.TabIndex = 0x95; this.RSN34.Text = "34"; this.RSN34.TextAlign = ContentAlignment.TopLeft; this.RSN34.UseVisualStyleBackColor = true; this.RSN34.Click += new EventHandler(this.RSN34_Click); this.RSN18.BackgroundImageLayout = ImageLayout.Stretch; this.RSN18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN18.FlatAppearance.BorderSize = 2; this.RSN18.FlatAppearance.CheckedBackColor = Color.Black; this.RSN18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN18.FlatStyle = FlatStyle.Flat; this.RSN18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN18.ForeColor = SystemColors.ActiveCaptionText; this.RSN18.Location = new Point(0x6b, 0x98); this.RSN18.Name = "RSN18"; this.RSN18.Size = new Size(40, 40); this.RSN18.TabIndex = 0x85; this.RSN18.Text = "18"; this.RSN18.TextAlign = ContentAlignment.TopLeft; this.RSN18.UseVisualStyleBackColor = true; this.RSN18.Click += new EventHandler(this.RSN18_Click); this.RSN33.BackgroundImageLayout = ImageLayout.Stretch; this.RSN33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN33.FlatAppearance.BorderSize = 2; this.RSN33.FlatAppearance.CheckedBackColor = Color.Black; this.RSN33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN33.FlatStyle = FlatStyle.Flat; this.RSN33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN33.ForeColor = SystemColors.ActiveCaptionText; this.RSN33.Location = new Point(0x6b, 290); this.RSN33.Name = "RSN33"; this.RSN33.Size = new Size(40, 40); this.RSN33.TabIndex = 0x94; this.RSN33.Text = "33"; this.RSN33.TextAlign = ContentAlignment.TopLeft; this.RSN33.UseVisualStyleBackColor = true; this.RSN33.Click += new EventHandler(this.RSN33_Click); this.RSN19.BackgroundImageLayout = ImageLayout.Stretch; this.RSN19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN19.FlatAppearance.BorderSize = 2; this.RSN19.FlatAppearance.CheckedBackColor = Color.Black; this.RSN19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN19.FlatStyle = FlatStyle.Flat; this.RSN19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN19.ForeColor = SystemColors.ActiveCaptionText; this.RSN19.Location = new Point(0x99, 0x98); this.RSN19.Name = "RSN19"; this.RSN19.Size = new Size(40, 40); this.RSN19.TabIndex = 0x86; this.RSN19.Text = "19"; this.RSN19.TextAlign = ContentAlignment.TopLeft; this.RSN19.UseVisualStyleBackColor = true; this.RSN19.Click += new EventHandler(this.RSN19_Click); this.RSN32.BackgroundImageLayout = ImageLayout.Stretch; this.RSN32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN32.FlatAppearance.BorderSize = 2; this.RSN32.FlatAppearance.CheckedBackColor = Color.Black; this.RSN32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN32.FlatStyle = FlatStyle.Flat; this.RSN32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN32.ForeColor = SystemColors.ActiveCaptionText; this.RSN32.Location = new Point(0x3d, 290); this.RSN32.Name = "RSN32"; this.RSN32.Size = new Size(40, 40); this.RSN32.TabIndex = 0x93; this.RSN32.Text = "32"; this.RSN32.TextAlign = ContentAlignment.TopLeft; this.RSN32.UseVisualStyleBackColor = true; this.RSN32.Click += new EventHandler(this.RSN32_Click); this.RSN20.BackgroundImageLayout = ImageLayout.Stretch; this.RSN20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN20.FlatAppearance.BorderSize = 2; this.RSN20.FlatAppearance.CheckedBackColor = Color.Black; this.RSN20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN20.FlatStyle = FlatStyle.Flat; this.RSN20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN20.ForeColor = SystemColors.ActiveCaptionText; this.RSN20.Location = new Point(0xc6, 0x98); this.RSN20.Name = "RSN20"; this.RSN20.Size = new Size(40, 40); this.RSN20.TabIndex = 0x87; this.RSN20.Text = "20"; this.RSN20.TextAlign = ContentAlignment.TopLeft; this.RSN20.UseVisualStyleBackColor = true; this.RSN20.Click += new EventHandler(this.RSN20_Click); this.RSN31.BackgroundImageLayout = ImageLayout.Stretch; this.RSN31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN31.FlatAppearance.BorderSize = 2; this.RSN31.FlatAppearance.CheckedBackColor = Color.Black; this.RSN31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN31.FlatStyle = FlatStyle.Flat; this.RSN31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN31.ForeColor = SystemColors.ActiveCaptionText; this.RSN31.Location = new Point(15, 290); this.RSN31.Name = "RSN31"; this.RSN31.Size = new Size(40, 40); this.RSN31.TabIndex = 0x92; this.RSN31.Text = "31"; this.RSN31.TextAlign = ContentAlignment.TopLeft; this.RSN31.UseVisualStyleBackColor = true; this.RSN31.Click += new EventHandler(this.RSN31_Click); this.RSN21.BackgroundImageLayout = ImageLayout.Stretch; this.RSN21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN21.FlatAppearance.BorderSize = 2; this.RSN21.FlatAppearance.CheckedBackColor = Color.Black; this.RSN21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.RSN21.FlatStyle = FlatStyle.Flat; this.RSN21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN21.ForeColor = SystemColors.ActiveCaptionText; this.RSN21.Location = new Point(15, 0xc6); this.RSN21.Name = "RSN21"; this.RSN21.Size = new Size(40, 40); this.RSN21.TabIndex = 0x88; this.RSN21.Text = "21"; this.RSN21.TextAlign = ContentAlignment.TopLeft; this.RSN21.UseVisualStyleBackColor = true; this.RSN21.Click += new EventHandler(this.RSN21_Click); this.RSN30.BackgroundImageLayout = ImageLayout.Stretch; this.RSN30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN30.FlatAppearance.BorderSize = 2; this.RSN30.FlatAppearance.CheckedBackColor = Color.Black; this.RSN30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN30.FlatStyle = FlatStyle.Flat; this.RSN30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN30.ForeColor = SystemColors.ActiveCaptionText; this.RSN30.Location = new Point(0xc6, 0xf4); this.RSN30.Name = "RSN30"; this.RSN30.Size = new Size(40, 40); this.RSN30.TabIndex = 0x91; this.RSN30.Text = "30"; this.RSN30.TextAlign = ContentAlignment.TopLeft; this.RSN30.UseVisualStyleBackColor = true; this.RSN30.Click += new EventHandler(this.RSN30_Click); this.RSN22.BackgroundImageLayout = ImageLayout.Stretch; this.RSN22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN22.FlatAppearance.BorderSize = 2; this.RSN22.FlatAppearance.CheckedBackColor = Color.Black; this.RSN22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN22.FlatStyle = FlatStyle.Flat; this.RSN22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN22.ForeColor = SystemColors.ActiveCaptionText; this.RSN22.Location = new Point(0x3d, 0xc6); this.RSN22.Name = "RSN22"; this.RSN22.Size = new Size(40, 40); this.RSN22.TabIndex = 0x89; this.RSN22.Text = "22"; this.RSN22.TextAlign = ContentAlignment.TopLeft; this.RSN22.UseVisualStyleBackColor = true; this.RSN22.Click += new EventHandler(this.RSN22_Click); this.RSN29.BackgroundImageLayout = ImageLayout.Stretch; this.RSN29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN29.FlatAppearance.BorderSize = 2; this.RSN29.FlatAppearance.CheckedBackColor = Color.Black; this.RSN29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN29.FlatStyle = FlatStyle.Flat; this.RSN29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN29.ForeColor = SystemColors.ActiveCaptionText; this.RSN29.Location = new Point(0x99, 0xf4); this.RSN29.Name = "RSN29"; this.RSN29.Size = new Size(40, 40); this.RSN29.TabIndex = 0x90; this.RSN29.Text = "29"; this.RSN29.TextAlign = ContentAlignment.TopLeft; this.RSN29.UseVisualStyleBackColor = true; this.RSN29.Click += new EventHandler(this.RSN29_Click); this.RSN23.BackgroundImageLayout = ImageLayout.Stretch; this.RSN23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN23.FlatAppearance.BorderSize = 2; this.RSN23.FlatAppearance.CheckedBackColor = Color.Black; this.RSN23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN23.FlatStyle = FlatStyle.Flat; this.RSN23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN23.ForeColor = SystemColors.ActiveCaptionText; this.RSN23.Location = new Point(0x6b, 0xc6); this.RSN23.Name = "RSN23"; this.RSN23.Size = new Size(40, 40); this.RSN23.TabIndex = 0x8a; this.RSN23.Text = "23"; this.RSN23.TextAlign = ContentAlignment.TopLeft; this.RSN23.UseVisualStyleBackColor = true; this.RSN23.Click += new EventHandler(this.RSN23_Click); this.RSN28.BackgroundImageLayout = ImageLayout.Stretch; this.RSN28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN28.FlatAppearance.BorderSize = 2; this.RSN28.FlatAppearance.CheckedBackColor = Color.Black; this.RSN28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN28.FlatStyle = FlatStyle.Flat; this.RSN28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN28.ForeColor = SystemColors.ActiveCaptionText; this.RSN28.Location = new Point(0x6b, 0xf4); this.RSN28.Name = "RSN28"; this.RSN28.Size = new Size(40, 40); this.RSN28.TabIndex = 0x8f; this.RSN28.Text = "28"; this.RSN28.TextAlign = ContentAlignment.TopLeft; this.RSN28.UseVisualStyleBackColor = true; this.RSN28.Click += new EventHandler(this.RSN28_Click); this.RSN24.BackgroundImageLayout = ImageLayout.Stretch; this.RSN24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN24.FlatAppearance.BorderSize = 2; this.RSN24.FlatAppearance.CheckedBackColor = Color.Black; this.RSN24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN24.FlatStyle = FlatStyle.Flat; this.RSN24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN24.ForeColor = SystemColors.ActiveCaptionText; this.RSN24.Location = new Point(0x99, 0xc6); this.RSN24.Name = "RSN24"; this.RSN24.Size = new Size(40, 40); this.RSN24.TabIndex = 0x8b; this.RSN24.Text = "24"; this.RSN24.TextAlign = ContentAlignment.TopLeft; this.RSN24.UseVisualStyleBackColor = true; this.RSN24.Click += new EventHandler(this.RSN24_Click); this.RSN27.BackgroundImageLayout = ImageLayout.Stretch; this.RSN27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN27.FlatAppearance.BorderSize = 2; this.RSN27.FlatAppearance.CheckedBackColor = Color.Black; this.RSN27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN27.FlatStyle = FlatStyle.Flat; this.RSN27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN27.ForeColor = SystemColors.ActiveCaptionText; this.RSN27.Location = new Point(0x3d, 0xf4); this.RSN27.Name = "RSN27"; this.RSN27.Size = new Size(40, 40); this.RSN27.TabIndex = 0x8e; this.RSN27.Text = "27"; this.RSN27.TextAlign = ContentAlignment.TopLeft; this.RSN27.UseVisualStyleBackColor = true; this.RSN27.Click += new EventHandler(this.RSN27_Click); this.RSN25.BackgroundImageLayout = ImageLayout.Stretch; this.RSN25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN25.FlatAppearance.BorderSize = 2; this.RSN25.FlatAppearance.CheckedBackColor = Color.Black; this.RSN25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN25.FlatStyle = FlatStyle.Flat; this.RSN25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN25.ForeColor = SystemColors.ActiveCaptionText; this.RSN25.Location = new Point(0xc6, 0xc6); this.RSN25.Name = "RSN25"; this.RSN25.Size = new Size(40, 40); this.RSN25.TabIndex = 140; this.RSN25.Text = "25"; this.RSN25.TextAlign = ContentAlignment.TopLeft; this.RSN25.UseVisualStyleBackColor = true; this.RSN25.Click += new EventHandler(this.RSN25_Click); this.RSN26.BackgroundImageLayout = ImageLayout.Stretch; this.RSN26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.RSN26.FlatAppearance.BorderSize = 2; this.RSN26.FlatAppearance.CheckedBackColor = Color.Black; this.RSN26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.RSN26.FlatStyle = FlatStyle.Flat; this.RSN26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.RSN26.ForeColor = SystemColors.ActiveCaptionText; this.RSN26.Location = new Point(15, 0xf4); this.RSN26.Name = "RSN26"; this.RSN26.Size = new Size(40, 40); this.RSN26.TabIndex = 0x8d; this.RSN26.Text = "26"; this.RSN26.TextAlign = ContentAlignment.TopLeft; this.RSN26.UseVisualStyleBackColor = true; this.RSN26.Click += new EventHandler(this.RSN26_Click); this.refrRSN.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refrRSN.BackColor = Color.White; this.refrRSN.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refrRSN.Location = new Point(0x4d, 0x199); this.refrRSN.Multiline = true; this.refrRSN.Name = "refrRSN"; this.refrRSN.ReadOnly = true; this.refrRSN.ScrollBars = ScrollBars.Vertical; this.refrRSN.Size = new Size(0x2a5, 0x7c); this.refrRSN.TabIndex = 0x57; this.panel10.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel10.BackColor = Color.Transparent; this.panel10.Controls.Add(this.RSNopd); this.panel10.Controls.Add(this.RSNopc); this.panel10.Controls.Add(this.RSNopb); this.panel10.Controls.Add(this.RSNopa); this.panel10.Controls.Add(this.metroRadioButton13); this.panel10.Controls.Add(this.metroRadioButton14); this.panel10.Controls.Add(this.metroRadioButton15); this.panel10.Controls.Add(this.metroRadioButton16); this.panel10.Location = new Point(0x4d, 0x10f); this.panel10.Name = "panel10"; this.panel10.Size = new Size(0x2a5, 0x84); this.panel10.TabIndex = 0x56; this.RSNopd.AutoSize = true; this.RSNopd.Font = new Font("Britannic Bold", 11.25f); this.RSNopd.Location = new Point(0x38, 0x6d); this.RSNopd.Name = "RSNopd"; this.RSNopd.Size = new Size(0x24, 0x10); this.RSNopd.TabIndex = 0x6f; this.RSNopd.Text = "OpD"; this.RSNopc.AutoSize = true; this.RSNopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.RSNopc.Location = new Point(0x38, 0x4b); this.RSNopc.Name = "RSNopc"; this.RSNopc.Size = new Size(0x23, 0x10); this.RSNopc.TabIndex = 110; this.RSNopc.Text = "OpC"; this.RSNopb.AutoSize = true; this.RSNopb.Font = new Font("Britannic Bold", 11.25f); this.RSNopb.Location = new Point(0x36, 0x2a); this.RSNopb.Name = "RSNopb"; this.RSNopb.Size = new Size(0x23, 0x10); this.RSNopb.TabIndex = 0x6d; this.RSNopb.Text = "OpB"; this.RSNopa.AutoSize = true; this.RSNopa.Font = new Font("Britannic Bold", 11.25f); this.RSNopa.Location = new Point(0x36, 9); this.RSNopa.Name = "RSNopa"; this.RSNopa.Size = new Size(0x22, 0x10); this.RSNopa.TabIndex = 0x6c; this.RSNopa.Text = "OpA"; this.metroRadioButton13.AutoSize = true; this.metroRadioButton13.Location = new Point(0x11, 10); this.metroRadioButton13.Name = "metroRadioButton13"; this.metroRadioButton13.Size = new Size(0x1f, 15); this.metroRadioButton13.Style = MetroColorStyle.Blue; this.metroRadioButton13.TabIndex = 0x1b; this.metroRadioButton13.TabStop = true; this.metroRadioButton13.Text = "A"; this.metroRadioButton13.Theme = MetroThemeStyle.Light; this.metroRadioButton13.UseSelectable = true; this.metroRadioButton13.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton13.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton14.AutoSize = true; this.metroRadioButton14.Location = new Point(0x11, 0x2b); this.metroRadioButton14.Name = "metroRadioButton14"; this.metroRadioButton14.Size = new Size(30, 15); this.metroRadioButton14.Style = MetroColorStyle.Blue; this.metroRadioButton14.TabIndex = 0x1c; this.metroRadioButton14.TabStop = true; this.metroRadioButton14.Text = "B"; this.metroRadioButton14.Theme = MetroThemeStyle.Light; this.metroRadioButton14.UseSelectable = true; this.metroRadioButton14.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton14.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton15.AutoSize = true; this.metroRadioButton15.Location = new Point(0x11, 0x4c); this.metroRadioButton15.Name = "metroRadioButton15"; this.metroRadioButton15.Size = new Size(0x1f, 15); this.metroRadioButton15.Style = MetroColorStyle.Blue; this.metroRadioButton15.TabIndex = 0x1d; this.metroRadioButton15.TabStop = true; this.metroRadioButton15.Text = "C"; this.metroRadioButton15.Theme = MetroThemeStyle.Light; this.metroRadioButton15.UseSelectable = true; this.metroRadioButton15.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton15.Click += new EventHandler(this.radioButton_Click4RSN); this.metroRadioButton16.AutoSize = true; this.metroRadioButton16.Location = new Point(0x11, 0x6d); this.metroRadioButton16.Name = "metroRadioButton16"; this.metroRadioButton16.Size = new Size(0x1f, 15); this.metroRadioButton16.Style = MetroColorStyle.Blue; this.metroRadioButton16.TabIndex = 30; this.metroRadioButton16.TabStop = true; this.metroRadioButton16.Text = "D"; this.metroRadioButton16.Theme = MetroThemeStyle.Light; this.metroRadioButton16.UseSelectable = true; this.metroRadioButton16.CheckedChanged += new EventHandler(this.rbchk4rsn); this.metroRadioButton16.Click += new EventHandler(this.radioButton_Click4RSN); this.sec4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec4.BackColor = Color.White; this.sec4.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec4.Location = new Point(0x4d, 3); this.sec4.Multiline = true; this.sec4.Name = "sec4"; this.sec4.ReadOnly = true; this.sec4.ScrollBars = ScrollBars.Vertical; this.sec4.Size = new Size(0x2a5, 0x106); this.sec4.TabIndex = 0x55; this.MnCtab.Controls.Add(this.markandnextMnC); this.MnCtab.Controls.Add(this.panel17); this.MnCtab.Controls.Add(this.label7); this.MnCtab.Controls.Add(this.savennextMnC); this.MnCtab.Controls.Add(this.panel11); this.MnCtab.Controls.Add(this.refrMnC); this.MnCtab.Controls.Add(this.panel12); this.MnCtab.Controls.Add(this.sec5); this.MnCtab.Controls.Add(this.panel21); this.MnCtab.HorizontalScrollbarBarColor = true; this.MnCtab.HorizontalScrollbarHighlightOnWheel = false; this.MnCtab.HorizontalScrollbarSize = 10; this.MnCtab.Location = new Point(4, 0x23); this.MnCtab.Name = "MnCtab"; this.MnCtab.Size = new Size(0x3f8, 0x2d9); this.MnCtab.Style = MetroColorStyle.Blue; this.MnCtab.TabIndex = 4; this.MnCtab.Text = "Marketing/Computer"; this.MnCtab.Theme = MetroThemeStyle.Light; this.MnCtab.VerticalScrollbarBarColor = true; this.MnCtab.VerticalScrollbarHighlightOnWheel = false; this.MnCtab.VerticalScrollbarSize = 10; this.panel21.BackColor = Color.Transparent; this.panel21.Controls.Add(this.textBox15); this.panel21.Controls.Add(this.chkansMnC); this.panel21.Controls.Add(this.ans4MnC); this.panel21.Controls.Add(this.secnameMnC); this.panel21.Controls.Add(this.metroLabel20); this.panel21.Controls.Add(this.metroLabel18); this.panel21.Controls.Add(this.metroLabel17); this.panel21.Controls.Add(this.metroLabel19); this.panel21.Location = new Point(0x300, 9); this.panel21.Name = "panel21"; this.panel21.Size = new Size(0x90, 270); this.panel21.TabIndex = 0x66; this.panel21.Visible = false; this.textBox15.Location = new Point(13, 0x13); this.textBox15.Multiline = true; this.textBox15.Name = "textBox15"; this.textBox15.Size = new Size(0x18, 0x1b); this.textBox15.TabIndex = 0x5b; this.textBox15.Text = "1"; this.chkansMnC.Location = new Point(13, 0x34); this.chkansMnC.Name = "chkansMnC"; this.chkansMnC.Size = new Size(40, 20); this.chkansMnC.TabIndex = 90; this.ans4MnC.Location = new Point(0x5b, 0x34); this.ans4MnC.Name = "ans4MnC"; this.ans4MnC.Size = new Size(40, 20); this.ans4MnC.TabIndex = 0x5d; this.secnameMnC.AutoSize = true; this.secnameMnC.Location = new Point(0x49, 0x13); this.secnameMnC.Name = "secnameMnC"; this.secnameMnC.Size = new Size(0x1d, 13); this.secnameMnC.TabIndex = 0x5e; this.secnameMnC.Text = "MnC"; this.metroLabel20.AutoSize = true; this.metroLabel20.FontWeight = MetroLabelWeight.Bold; this.metroLabel20.ForeColor = Color.Black; this.metroLabel20.Location = new Point(0x29, 0x7d); this.metroLabel20.Name = "metroLabel20"; this.metroLabel20.Size = new Size(0x3d, 0x13); this.metroLabel20.Style = MetroColorStyle.Black; this.metroLabel20.TabIndex = 0x67; this.metroLabel20.Text = "option1"; this.metroLabel20.Theme = MetroThemeStyle.Light; this.metroLabel20.UseStyleColors = true; this.metroLabel18.AutoSize = true; this.metroLabel18.FontWeight = MetroLabelWeight.Bold; this.metroLabel18.Location = new Point(0x29, 0xb9); this.metroLabel18.Name = "metroLabel18"; this.metroLabel18.Size = new Size(0x3d, 0x13); this.metroLabel18.Style = MetroColorStyle.Black; this.metroLabel18.TabIndex = 0x18; this.metroLabel18.Text = "option3"; this.metroLabel18.Theme = MetroThemeStyle.Light; this.metroLabel18.UseStyleColors = true; this.metroLabel17.AutoSize = true; this.metroLabel17.FontWeight = MetroLabelWeight.Bold; this.metroLabel17.Location = new Point(0x29, 0xde); this.metroLabel17.Name = "metroLabel17"; this.metroLabel17.Size = new Size(0x3d, 0x13); this.metroLabel17.Style = MetroColorStyle.Black; this.metroLabel17.TabIndex = 0x67; this.metroLabel17.Text = "option4"; this.metroLabel17.Theme = MetroThemeStyle.Light; this.metroLabel17.UseStyleColors = true; this.metroLabel19.AutoSize = true; this.metroLabel19.FontWeight = MetroLabelWeight.Bold; this.metroLabel19.Location = new Point(0x29, 160); this.metroLabel19.Name = "metroLabel19"; this.metroLabel19.Size = new Size(0x3d, 0x13); this.metroLabel19.Style = MetroColorStyle.Black; this.metroLabel19.TabIndex = 0x19; this.metroLabel19.Text = "option2"; this.metroLabel19.Theme = MetroThemeStyle.Light; this.metroLabel19.UseStyleColors = true; this.markandnextMnC.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.markandnextMnC.Location = new Point(0x2f7, 0x196); this.markandnextMnC.Name = "markandnextMnC"; this.markandnextMnC.Size = new Size(0x7e, 0x2d); this.markandnextMnC.Style = MetroColorStyle.Blue; this.markandnextMnC.TabIndex = 0x65; this.markandnextMnC.Text = "Mark and Next"; this.markandnextMnC.Theme = MetroThemeStyle.Light; this.markandnextMnC.UseSelectable = true; this.markandnextMnC.Click += new EventHandler(this.markandnextMnC_Click); this.panel17.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel17.BackColor = SystemColors.InactiveCaptionText; this.panel17.Controls.Add(this.metroLabel41); this.panel17.Controls.Add(this.pictureBox18); this.panel17.Controls.Add(this.metroLabel42); this.panel17.Controls.Add(this.metroLabel43); this.panel17.Controls.Add(this.metroLabel44); this.panel17.Controls.Add(this.pictureBox19); this.panel17.Controls.Add(this.pictureBox20); this.panel17.Controls.Add(this.pictureBox21); this.panel17.Location = new Point(0x2f7, 0x1c6); this.panel17.Name = "panel17"; this.panel17.Size = new Size(0x107, 0xb2); this.panel17.TabIndex = 100; this.metroLabel41.AutoSize = true; this.metroLabel41.BackColor = Color.Transparent; this.metroLabel41.FontWeight = MetroLabelWeight.Bold; this.metroLabel41.Location = new Point(0x3b, 0x94); this.metroLabel41.Name = "metroLabel41"; this.metroLabel41.Size = new Size(0x8b, 0x13); this.metroLabel41.Style = MetroColorStyle.Purple; this.metroLabel41.TabIndex = 0x65; this.metroLabel41.Text = "Marked For Review"; this.metroLabel41.Theme = MetroThemeStyle.Dark; this.metroLabel41.UseCustomBackColor = true; this.metroLabel41.UseStyleColors = true; this.pictureBox18.BackColor = Color.White; this.pictureBox18.Image = Resources.rvw; this.pictureBox18.Location = new Point(3, 0x8f); this.pictureBox18.Name = "pictureBox18"; this.pictureBox18.Size = new Size(30, 30); this.pictureBox18.TabIndex = 100; this.pictureBox18.TabStop = false; this.metroLabel42.AutoSize = true; this.metroLabel42.BackColor = Color.Transparent; this.metroLabel42.FontWeight = MetroLabelWeight.Bold; this.metroLabel42.Location = new Point(60, 0x63); this.metroLabel42.Name = "metroLabel42"; this.metroLabel42.Size = new Size(0x53, 0x13); this.metroLabel42.Style = MetroColorStyle.White; this.metroLabel42.TabIndex = 0x63; this.metroLabel42.Text = "Not Visited"; this.metroLabel42.Theme = MetroThemeStyle.Dark; this.metroLabel42.UseCustomBackColor = true; this.metroLabel42.UseStyleColors = true; this.metroLabel43.AutoSize = true; this.metroLabel43.BackColor = Color.Transparent; this.metroLabel43.FontWeight = MetroLabelWeight.Bold; this.metroLabel43.Location = new Point(60, 0x35); this.metroLabel43.Name = "metroLabel43"; this.metroLabel43.Size = new Size(0x68, 0x13); this.metroLabel43.Style = MetroColorStyle.Red; this.metroLabel43.TabIndex = 0x62; this.metroLabel43.Text = "Not Answered"; this.metroLabel43.Theme = MetroThemeStyle.Dark; this.metroLabel43.UseCustomBackColor = true; this.metroLabel43.UseStyleColors = true; this.metroLabel44.AutoSize = true; this.metroLabel44.BackColor = Color.Transparent; this.metroLabel44.FontWeight = MetroLabelWeight.Bold; this.metroLabel44.Location = new Point(60, 7); this.metroLabel44.Name = "metroLabel44"; this.metroLabel44.Size = new Size(0x4b, 0x13); this.metroLabel44.Style = MetroColorStyle.Green; this.metroLabel44.TabIndex = 0x5f; this.metroLabel44.Text = "Answered"; this.metroLabel44.Theme = MetroThemeStyle.Dark; this.metroLabel44.UseCustomBackColor = true; this.metroLabel44.UseStyleColors = true; this.pictureBox19.BackColor = Color.White; this.pictureBox19.Location = new Point(3, 0x5f); this.pictureBox19.Name = "pictureBox19"; this.pictureBox19.Size = new Size(30, 30); this.pictureBox19.TabIndex = 0x61; this.pictureBox19.TabStop = false; this.pictureBox20.Image = Resources.unchk; this.pictureBox20.Location = new Point(3, 0x31); this.pictureBox20.Name = "pictureBox20"; this.pictureBox20.Size = new Size(30, 30); this.pictureBox20.TabIndex = 0x60; this.pictureBox20.TabStop = false; this.pictureBox21.Image = Resources.chk1; this.pictureBox21.Location = new Point(3, 3); this.pictureBox21.Name = "pictureBox21"; this.pictureBox21.Size = new Size(30, 30); this.pictureBox21.TabIndex = 0x5f; this.pictureBox21.TabStop = false; this.label7.AutoSize = true; this.label7.Location = new Point(9, 6); this.label7.Name = "label7"; this.label7.Size = new Size(0x3a, 13); this.label7.TabIndex = 0x5c; this.label7.Text = "Question 1"; this.savennextMnC.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.savennextMnC.Location = new Point(0x385, 0x196); this.savennextMnC.Name = "savennextMnC"; this.savennextMnC.Size = new Size(0x79, 0x2d); this.savennextMnC.Style = MetroColorStyle.Blue; this.savennextMnC.TabIndex = 0x59; this.savennextMnC.Text = "Save and Next"; this.savennextMnC.Theme = MetroThemeStyle.Light; this.savennextMnC.UseSelectable = true; this.savennextMnC.Click += new EventHandler(this.metroButton5_Click); this.panel11.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.panel11.AutoScroll = true; this.panel11.BackColor = Color.Transparent; this.panel11.BorderStyle = BorderStyle.FixedSingle; this.panel11.Controls.Add(this.MnC1); this.panel11.Controls.Add(this.MnC50); this.panel11.Controls.Add(this.MnC2); this.panel11.Controls.Add(this.MnC49); this.panel11.Controls.Add(this.MnC3); this.panel11.Controls.Add(this.MnC48); this.panel11.Controls.Add(this.MnC4); this.panel11.Controls.Add(this.MnC47); this.panel11.Controls.Add(this.MnC5); this.panel11.Controls.Add(this.MnC46); this.panel11.Controls.Add(this.MnC6); this.panel11.Controls.Add(this.MnC45); this.panel11.Controls.Add(this.MnC7); this.panel11.Controls.Add(this.MnC44); this.panel11.Controls.Add(this.MnC8); this.panel11.Controls.Add(this.MnC43); this.panel11.Controls.Add(this.MnC9); this.panel11.Controls.Add(this.MnC42); this.panel11.Controls.Add(this.MnC10); this.panel11.Controls.Add(this.MnC41); this.panel11.Controls.Add(this.MnC11); this.panel11.Controls.Add(this.MnC40); this.panel11.Controls.Add(this.MnC12); this.panel11.Controls.Add(this.MnC39); this.panel11.Controls.Add(this.MnC13); this.panel11.Controls.Add(this.MnC38); this.panel11.Controls.Add(this.MnC14); this.panel11.Controls.Add(this.MnC37); this.panel11.Controls.Add(this.MnC15); this.panel11.Controls.Add(this.MnC36); this.panel11.Controls.Add(this.MnC16); this.panel11.Controls.Add(this.MnC35); this.panel11.Controls.Add(this.MnC17); this.panel11.Controls.Add(this.MnC34); this.panel11.Controls.Add(this.MnC18); this.panel11.Controls.Add(this.MnC33); this.panel11.Controls.Add(this.MnC19); this.panel11.Controls.Add(this.MnC32); this.panel11.Controls.Add(this.MnC20); this.panel11.Controls.Add(this.MnC31); this.panel11.Controls.Add(this.MnC21); this.panel11.Controls.Add(this.MnC30); this.panel11.Controls.Add(this.MnC22); this.panel11.Controls.Add(this.MnC29); this.panel11.Controls.Add(this.MnC23); this.panel11.Controls.Add(this.MnC28); this.panel11.Controls.Add(this.MnC24); this.panel11.Controls.Add(this.MnC27); this.panel11.Controls.Add(this.MnC25); this.panel11.Controls.Add(this.MnC26); this.panel11.Location = new Point(0x2f5, 3); this.panel11.Name = "panel11"; this.panel11.Size = new Size(0x107, 0x191); this.panel11.TabIndex = 0x58; this.MnC1.BackgroundImageLayout = ImageLayout.Stretch; this.MnC1.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC1.FlatAppearance.BorderSize = 2; this.MnC1.FlatAppearance.CheckedBackColor = Color.Black; this.MnC1.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC1.FlatStyle = FlatStyle.Flat; this.MnC1.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC1.ForeColor = SystemColors.ActiveCaptionText; this.MnC1.Location = new Point(15, 14); this.MnC1.Name = "MnC1"; this.MnC1.Size = new Size(40, 40); this.MnC1.TabIndex = 0x74; this.MnC1.Text = "1"; this.MnC1.TextAlign = ContentAlignment.TopLeft; this.MnC1.UseVisualStyleBackColor = true; this.MnC1.Click += new EventHandler(this.MnC1_Click); this.MnC50.BackgroundImageLayout = ImageLayout.Stretch; this.MnC50.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC50.FlatAppearance.BorderSize = 2; this.MnC50.FlatAppearance.CheckedBackColor = Color.Black; this.MnC50.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC50.FlatStyle = FlatStyle.Flat; this.MnC50.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC50.ForeColor = SystemColors.ActiveCaptionText; this.MnC50.Location = new Point(0xc6, 0x1ac); this.MnC50.Name = "MnC50"; this.MnC50.Size = new Size(40, 40); this.MnC50.TabIndex = 0xa5; this.MnC50.Text = "50"; this.MnC50.TextAlign = ContentAlignment.TopLeft; this.MnC50.UseVisualStyleBackColor = true; this.MnC50.Visible = false; this.MnC50.Click += new EventHandler(this.MnC50_Click); this.MnC2.BackgroundImageLayout = ImageLayout.Stretch; this.MnC2.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC2.FlatAppearance.BorderSize = 2; this.MnC2.FlatAppearance.CheckedBackColor = Color.Black; this.MnC2.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC2.FlatStyle = FlatStyle.Flat; this.MnC2.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC2.ForeColor = SystemColors.ActiveCaptionText; this.MnC2.Location = new Point(0x3d, 14); this.MnC2.Name = "MnC2"; this.MnC2.Size = new Size(40, 40); this.MnC2.TabIndex = 0x75; this.MnC2.Text = "2"; this.MnC2.TextAlign = ContentAlignment.TopLeft; this.MnC2.UseVisualStyleBackColor = true; this.MnC2.Click += new EventHandler(this.MnC2_Click); this.MnC49.BackgroundImageLayout = ImageLayout.Stretch; this.MnC49.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC49.FlatAppearance.BorderSize = 2; this.MnC49.FlatAppearance.CheckedBackColor = Color.Black; this.MnC49.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC49.FlatStyle = FlatStyle.Flat; this.MnC49.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC49.ForeColor = SystemColors.ActiveCaptionText; this.MnC49.Location = new Point(0x99, 0x1ac); this.MnC49.Name = "MnC49"; this.MnC49.Size = new Size(40, 40); this.MnC49.TabIndex = 0xa4; this.MnC49.Text = "49"; this.MnC49.TextAlign = ContentAlignment.TopLeft; this.MnC49.UseVisualStyleBackColor = true; this.MnC49.Visible = false; this.MnC49.Click += new EventHandler(this.MnC49_Click); this.MnC3.BackgroundImageLayout = ImageLayout.Stretch; this.MnC3.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC3.FlatAppearance.BorderSize = 2; this.MnC3.FlatAppearance.CheckedBackColor = Color.Black; this.MnC3.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC3.FlatStyle = FlatStyle.Flat; this.MnC3.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC3.ForeColor = SystemColors.ActiveCaptionText; this.MnC3.Location = new Point(0x6b, 14); this.MnC3.Name = "MnC3"; this.MnC3.Size = new Size(40, 40); this.MnC3.TabIndex = 0x76; this.MnC3.Text = "3"; this.MnC3.TextAlign = ContentAlignment.TopLeft; this.MnC3.UseVisualStyleBackColor = true; this.MnC3.Click += new EventHandler(this.MnC3_Click); this.MnC48.BackgroundImageLayout = ImageLayout.Stretch; this.MnC48.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC48.FlatAppearance.BorderSize = 2; this.MnC48.FlatAppearance.CheckedBackColor = Color.Black; this.MnC48.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC48.FlatStyle = FlatStyle.Flat; this.MnC48.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC48.ForeColor = SystemColors.ActiveCaptionText; this.MnC48.Location = new Point(0x6b, 0x1ac); this.MnC48.Name = "MnC48"; this.MnC48.Size = new Size(40, 40); this.MnC48.TabIndex = 0xa3; this.MnC48.Text = "48"; this.MnC48.TextAlign = ContentAlignment.TopLeft; this.MnC48.UseVisualStyleBackColor = true; this.MnC48.Visible = false; this.MnC48.Click += new EventHandler(this.MnC48_Click); this.MnC4.BackgroundImageLayout = ImageLayout.Stretch; this.MnC4.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC4.FlatAppearance.BorderSize = 2; this.MnC4.FlatAppearance.CheckedBackColor = Color.Black; this.MnC4.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC4.FlatStyle = FlatStyle.Flat; this.MnC4.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC4.ForeColor = SystemColors.ActiveCaptionText; this.MnC4.Location = new Point(0x99, 14); this.MnC4.Name = "MnC4"; this.MnC4.Size = new Size(40, 40); this.MnC4.TabIndex = 0x77; this.MnC4.Text = "4"; this.MnC4.TextAlign = ContentAlignment.TopLeft; this.MnC4.UseVisualStyleBackColor = true; this.MnC4.Click += new EventHandler(this.MnC4_Click); this.MnC47.BackgroundImageLayout = ImageLayout.Stretch; this.MnC47.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC47.FlatAppearance.BorderSize = 2; this.MnC47.FlatAppearance.CheckedBackColor = Color.Black; this.MnC47.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC47.FlatStyle = FlatStyle.Flat; this.MnC47.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC47.ForeColor = SystemColors.ActiveCaptionText; this.MnC47.Location = new Point(0x3d, 0x1ac); this.MnC47.Name = "MnC47"; this.MnC47.Size = new Size(40, 40); this.MnC47.TabIndex = 0xa2; this.MnC47.Text = "47"; this.MnC47.TextAlign = ContentAlignment.TopLeft; this.MnC47.UseVisualStyleBackColor = true; this.MnC47.Visible = false; this.MnC47.Click += new EventHandler(this.MnC47_Click); this.MnC5.BackgroundImageLayout = ImageLayout.Stretch; this.MnC5.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC5.FlatAppearance.BorderSize = 2; this.MnC5.FlatAppearance.CheckedBackColor = Color.Black; this.MnC5.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC5.FlatStyle = FlatStyle.Flat; this.MnC5.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC5.ForeColor = SystemColors.ActiveCaptionText; this.MnC5.Location = new Point(0xc6, 14); this.MnC5.Name = "MnC5"; this.MnC5.Size = new Size(40, 40); this.MnC5.TabIndex = 120; this.MnC5.Text = "5"; this.MnC5.TextAlign = ContentAlignment.TopLeft; this.MnC5.UseVisualStyleBackColor = true; this.MnC5.Click += new EventHandler(this.MnC5_Click); this.MnC46.BackgroundImageLayout = ImageLayout.Stretch; this.MnC46.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC46.FlatAppearance.BorderSize = 2; this.MnC46.FlatAppearance.CheckedBackColor = Color.Black; this.MnC46.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC46.FlatStyle = FlatStyle.Flat; this.MnC46.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC46.ForeColor = SystemColors.ActiveCaptionText; this.MnC46.Location = new Point(15, 0x1ac); this.MnC46.Name = "MnC46"; this.MnC46.Size = new Size(40, 40); this.MnC46.TabIndex = 0xa1; this.MnC46.Text = "46"; this.MnC46.TextAlign = ContentAlignment.TopLeft; this.MnC46.UseVisualStyleBackColor = true; this.MnC46.Visible = false; this.MnC46.Click += new EventHandler(this.MnC46_Click); this.MnC6.BackgroundImageLayout = ImageLayout.Stretch; this.MnC6.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC6.FlatAppearance.BorderSize = 2; this.MnC6.FlatAppearance.CheckedBackColor = Color.Black; this.MnC6.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC6.FlatStyle = FlatStyle.Flat; this.MnC6.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC6.ForeColor = SystemColors.ActiveCaptionText; this.MnC6.Location = new Point(15, 60); this.MnC6.Name = "MnC6"; this.MnC6.Size = new Size(40, 40); this.MnC6.TabIndex = 0x79; this.MnC6.Text = "6"; this.MnC6.TextAlign = ContentAlignment.TopLeft; this.MnC6.UseVisualStyleBackColor = true; this.MnC6.Click += new EventHandler(this.MnC6_Click); this.MnC45.BackgroundImageLayout = ImageLayout.Stretch; this.MnC45.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC45.FlatAppearance.BorderSize = 2; this.MnC45.FlatAppearance.CheckedBackColor = Color.Black; this.MnC45.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC45.FlatStyle = FlatStyle.Flat; this.MnC45.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC45.ForeColor = SystemColors.ActiveCaptionText; this.MnC45.Location = new Point(0xc6, 0x17e); this.MnC45.Name = "MnC45"; this.MnC45.Size = new Size(40, 40); this.MnC45.TabIndex = 160; this.MnC45.Text = "45"; this.MnC45.TextAlign = ContentAlignment.TopLeft; this.MnC45.UseVisualStyleBackColor = true; this.MnC45.Visible = false; this.MnC45.Click += new EventHandler(this.MnC45_Click); this.MnC7.BackgroundImageLayout = ImageLayout.Stretch; this.MnC7.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC7.FlatAppearance.BorderSize = 2; this.MnC7.FlatAppearance.CheckedBackColor = Color.Black; this.MnC7.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC7.FlatStyle = FlatStyle.Flat; this.MnC7.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC7.ForeColor = SystemColors.ActiveCaptionText; this.MnC7.Location = new Point(0x3d, 60); this.MnC7.Name = "MnC7"; this.MnC7.Size = new Size(40, 40); this.MnC7.TabIndex = 0x7a; this.MnC7.Text = "7"; this.MnC7.TextAlign = ContentAlignment.TopLeft; this.MnC7.UseVisualStyleBackColor = true; this.MnC7.Click += new EventHandler(this.MnC7_Click); this.MnC44.BackgroundImageLayout = ImageLayout.Stretch; this.MnC44.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC44.FlatAppearance.BorderSize = 2; this.MnC44.FlatAppearance.CheckedBackColor = Color.Black; this.MnC44.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC44.FlatStyle = FlatStyle.Flat; this.MnC44.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC44.ForeColor = SystemColors.ActiveCaptionText; this.MnC44.Location = new Point(0x99, 0x17e); this.MnC44.Name = "MnC44"; this.MnC44.Size = new Size(40, 40); this.MnC44.TabIndex = 0x9f; this.MnC44.Text = "44"; this.MnC44.TextAlign = ContentAlignment.TopLeft; this.MnC44.UseVisualStyleBackColor = true; this.MnC44.Visible = false; this.MnC44.Click += new EventHandler(this.MnC44_Click); this.MnC8.BackgroundImageLayout = ImageLayout.Stretch; this.MnC8.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC8.FlatAppearance.BorderSize = 2; this.MnC8.FlatAppearance.CheckedBackColor = Color.Black; this.MnC8.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC8.FlatStyle = FlatStyle.Flat; this.MnC8.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC8.ForeColor = SystemColors.ActiveCaptionText; this.MnC8.Location = new Point(0x6b, 60); this.MnC8.Name = "MnC8"; this.MnC8.Size = new Size(40, 40); this.MnC8.TabIndex = 0x7b; this.MnC8.Text = "8"; this.MnC8.TextAlign = ContentAlignment.TopLeft; this.MnC8.UseVisualStyleBackColor = true; this.MnC8.Click += new EventHandler(this.MnC8_Click); this.MnC43.BackgroundImageLayout = ImageLayout.Stretch; this.MnC43.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC43.FlatAppearance.BorderSize = 2; this.MnC43.FlatAppearance.CheckedBackColor = Color.Black; this.MnC43.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC43.FlatStyle = FlatStyle.Flat; this.MnC43.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC43.ForeColor = SystemColors.ActiveCaptionText; this.MnC43.Location = new Point(0x6b, 0x17e); this.MnC43.Name = "MnC43"; this.MnC43.Size = new Size(40, 40); this.MnC43.TabIndex = 0x9e; this.MnC43.Text = "43"; this.MnC43.TextAlign = ContentAlignment.TopLeft; this.MnC43.UseVisualStyleBackColor = true; this.MnC43.Visible = false; this.MnC43.Click += new EventHandler(this.MnC43_Click); this.MnC9.BackgroundImageLayout = ImageLayout.Stretch; this.MnC9.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC9.FlatAppearance.BorderSize = 2; this.MnC9.FlatAppearance.CheckedBackColor = Color.Black; this.MnC9.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC9.FlatStyle = FlatStyle.Flat; this.MnC9.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC9.ForeColor = SystemColors.ActiveCaptionText; this.MnC9.Location = new Point(0x99, 60); this.MnC9.Name = "MnC9"; this.MnC9.Size = new Size(40, 40); this.MnC9.TabIndex = 0x7c; this.MnC9.Text = "9"; this.MnC9.TextAlign = ContentAlignment.TopLeft; this.MnC9.UseVisualStyleBackColor = true; this.MnC9.Click += new EventHandler(this.MnC9_Click); this.MnC42.BackgroundImageLayout = ImageLayout.Stretch; this.MnC42.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC42.FlatAppearance.BorderSize = 2; this.MnC42.FlatAppearance.CheckedBackColor = Color.Black; this.MnC42.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC42.FlatStyle = FlatStyle.Flat; this.MnC42.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC42.ForeColor = SystemColors.ActiveCaptionText; this.MnC42.Location = new Point(0x3d, 0x17e); this.MnC42.Name = "MnC42"; this.MnC42.Size = new Size(40, 40); this.MnC42.TabIndex = 0x9d; this.MnC42.Text = "42"; this.MnC42.TextAlign = ContentAlignment.TopLeft; this.MnC42.UseVisualStyleBackColor = true; this.MnC42.Visible = false; this.MnC42.Click += new EventHandler(this.MnC42_Click); this.MnC10.BackgroundImageLayout = ImageLayout.Stretch; this.MnC10.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC10.FlatAppearance.BorderSize = 2; this.MnC10.FlatAppearance.CheckedBackColor = Color.Black; this.MnC10.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC10.FlatStyle = FlatStyle.Flat; this.MnC10.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC10.ForeColor = SystemColors.ActiveCaptionText; this.MnC10.Location = new Point(0xc6, 60); this.MnC10.Name = "MnC10"; this.MnC10.Size = new Size(40, 40); this.MnC10.TabIndex = 0x7d; this.MnC10.Text = "10"; this.MnC10.TextAlign = ContentAlignment.TopLeft; this.MnC10.UseVisualStyleBackColor = true; this.MnC10.Click += new EventHandler(this.MnC10_Click); this.MnC41.BackgroundImageLayout = ImageLayout.Stretch; this.MnC41.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC41.FlatAppearance.BorderSize = 2; this.MnC41.FlatAppearance.CheckedBackColor = Color.Black; this.MnC41.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC41.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC41.FlatStyle = FlatStyle.Flat; this.MnC41.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC41.ForeColor = SystemColors.ActiveCaptionText; this.MnC41.Location = new Point(15, 0x17e); this.MnC41.Name = "MnC41"; this.MnC41.Size = new Size(40, 40); this.MnC41.TabIndex = 0x9c; this.MnC41.Text = "41"; this.MnC41.TextAlign = ContentAlignment.TopLeft; this.MnC41.UseVisualStyleBackColor = true; this.MnC41.Visible = false; this.MnC41.Click += new EventHandler(this.MnC41_Click); this.MnC11.BackgroundImageLayout = ImageLayout.Stretch; this.MnC11.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC11.FlatAppearance.BorderSize = 2; this.MnC11.FlatAppearance.CheckedBackColor = Color.Black; this.MnC11.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC11.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC11.FlatStyle = FlatStyle.Flat; this.MnC11.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC11.ForeColor = SystemColors.ActiveCaptionText; this.MnC11.Location = new Point(15, 0x6a); this.MnC11.Name = "MnC11"; this.MnC11.Size = new Size(40, 40); this.MnC11.TabIndex = 0x7e; this.MnC11.Text = "11"; this.MnC11.TextAlign = ContentAlignment.TopLeft; this.MnC11.UseVisualStyleBackColor = true; this.MnC11.Click += new EventHandler(this.MnC11_Click); this.MnC40.BackgroundImageLayout = ImageLayout.Stretch; this.MnC40.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC40.FlatAppearance.BorderSize = 2; this.MnC40.FlatAppearance.CheckedBackColor = Color.Black; this.MnC40.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC40.FlatStyle = FlatStyle.Flat; this.MnC40.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC40.ForeColor = SystemColors.ActiveCaptionText; this.MnC40.Location = new Point(0xc6, 0x150); this.MnC40.Name = "MnC40"; this.MnC40.Size = new Size(40, 40); this.MnC40.TabIndex = 0x9b; this.MnC40.Text = "40"; this.MnC40.TextAlign = ContentAlignment.TopLeft; this.MnC40.UseVisualStyleBackColor = true; this.MnC40.Visible = false; this.MnC40.Click += new EventHandler(this.MnC40_Click); this.MnC12.BackgroundImageLayout = ImageLayout.Stretch; this.MnC12.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC12.FlatAppearance.BorderSize = 2; this.MnC12.FlatAppearance.CheckedBackColor = Color.Black; this.MnC12.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC12.FlatStyle = FlatStyle.Flat; this.MnC12.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC12.ForeColor = SystemColors.ActiveCaptionText; this.MnC12.Location = new Point(0x3d, 0x6a); this.MnC12.Name = "MnC12"; this.MnC12.Size = new Size(40, 40); this.MnC12.TabIndex = 0x7f; this.MnC12.Text = "12"; this.MnC12.TextAlign = ContentAlignment.TopLeft; this.MnC12.UseVisualStyleBackColor = true; this.MnC12.Click += new EventHandler(this.MnC12_Click); this.MnC39.BackgroundImageLayout = ImageLayout.Stretch; this.MnC39.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC39.FlatAppearance.BorderSize = 2; this.MnC39.FlatAppearance.CheckedBackColor = Color.Black; this.MnC39.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC39.FlatStyle = FlatStyle.Flat; this.MnC39.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC39.ForeColor = SystemColors.ActiveCaptionText; this.MnC39.Location = new Point(0x99, 0x150); this.MnC39.Name = "MnC39"; this.MnC39.Size = new Size(40, 40); this.MnC39.TabIndex = 0x9a; this.MnC39.Text = "39"; this.MnC39.TextAlign = ContentAlignment.TopLeft; this.MnC39.UseVisualStyleBackColor = true; this.MnC39.Visible = false; this.MnC39.Click += new EventHandler(this.MnC39_Click); this.MnC13.BackgroundImageLayout = ImageLayout.Stretch; this.MnC13.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC13.FlatAppearance.BorderSize = 2; this.MnC13.FlatAppearance.CheckedBackColor = Color.Black; this.MnC13.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC13.FlatStyle = FlatStyle.Flat; this.MnC13.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC13.ForeColor = SystemColors.ActiveCaptionText; this.MnC13.Location = new Point(0x6b, 0x6a); this.MnC13.Name = "MnC13"; this.MnC13.Size = new Size(40, 40); this.MnC13.TabIndex = 0x80; this.MnC13.Text = "13"; this.MnC13.TextAlign = ContentAlignment.TopLeft; this.MnC13.UseVisualStyleBackColor = true; this.MnC13.Click += new EventHandler(this.MnC13_Click); this.MnC38.BackgroundImageLayout = ImageLayout.Stretch; this.MnC38.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC38.FlatAppearance.BorderSize = 2; this.MnC38.FlatAppearance.CheckedBackColor = Color.Black; this.MnC38.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC38.FlatStyle = FlatStyle.Flat; this.MnC38.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC38.ForeColor = SystemColors.ActiveCaptionText; this.MnC38.Location = new Point(0x6b, 0x150); this.MnC38.Name = "MnC38"; this.MnC38.Size = new Size(40, 40); this.MnC38.TabIndex = 0x99; this.MnC38.Text = "38"; this.MnC38.TextAlign = ContentAlignment.TopLeft; this.MnC38.UseVisualStyleBackColor = true; this.MnC38.Visible = false; this.MnC38.Click += new EventHandler(this.MnC38_Click); this.MnC14.BackgroundImageLayout = ImageLayout.Stretch; this.MnC14.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC14.FlatAppearance.BorderSize = 2; this.MnC14.FlatAppearance.CheckedBackColor = Color.Black; this.MnC14.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC14.FlatStyle = FlatStyle.Flat; this.MnC14.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC14.ForeColor = SystemColors.ActiveCaptionText; this.MnC14.Location = new Point(0x99, 0x6a); this.MnC14.Name = "MnC14"; this.MnC14.Size = new Size(40, 40); this.MnC14.TabIndex = 0x81; this.MnC14.Text = "14"; this.MnC14.TextAlign = ContentAlignment.TopLeft; this.MnC14.UseVisualStyleBackColor = true; this.MnC14.Click += new EventHandler(this.MnC14_Click); this.MnC37.BackgroundImageLayout = ImageLayout.Stretch; this.MnC37.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC37.FlatAppearance.BorderSize = 2; this.MnC37.FlatAppearance.CheckedBackColor = Color.Black; this.MnC37.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC37.FlatStyle = FlatStyle.Flat; this.MnC37.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC37.ForeColor = SystemColors.ActiveCaptionText; this.MnC37.Location = new Point(0x3d, 0x150); this.MnC37.Name = "MnC37"; this.MnC37.Size = new Size(40, 40); this.MnC37.TabIndex = 0x98; this.MnC37.Text = "37"; this.MnC37.TextAlign = ContentAlignment.TopLeft; this.MnC37.UseVisualStyleBackColor = true; this.MnC37.Visible = false; this.MnC37.Click += new EventHandler(this.MnC37_Click); this.MnC15.BackgroundImageLayout = ImageLayout.Stretch; this.MnC15.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC15.FlatAppearance.BorderSize = 2; this.MnC15.FlatAppearance.CheckedBackColor = Color.Black; this.MnC15.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC15.FlatStyle = FlatStyle.Flat; this.MnC15.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC15.ForeColor = SystemColors.ActiveCaptionText; this.MnC15.Location = new Point(0xc6, 0x6a); this.MnC15.Name = "MnC15"; this.MnC15.Size = new Size(40, 40); this.MnC15.TabIndex = 130; this.MnC15.Text = "15"; this.MnC15.TextAlign = ContentAlignment.TopLeft; this.MnC15.UseVisualStyleBackColor = true; this.MnC15.Click += new EventHandler(this.MnC15_Click); this.MnC36.BackgroundImageLayout = ImageLayout.Stretch; this.MnC36.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC36.FlatAppearance.BorderSize = 2; this.MnC36.FlatAppearance.CheckedBackColor = Color.Black; this.MnC36.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC36.FlatStyle = FlatStyle.Flat; this.MnC36.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC36.ForeColor = SystemColors.ActiveCaptionText; this.MnC36.Location = new Point(15, 0x150); this.MnC36.Name = "MnC36"; this.MnC36.Size = new Size(40, 40); this.MnC36.TabIndex = 0x97; this.MnC36.Text = "36"; this.MnC36.TextAlign = ContentAlignment.TopLeft; this.MnC36.UseVisualStyleBackColor = true; this.MnC36.Visible = false; this.MnC36.Click += new EventHandler(this.MnC36_Click); this.MnC16.BackgroundImageLayout = ImageLayout.Stretch; this.MnC16.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC16.FlatAppearance.BorderSize = 2; this.MnC16.FlatAppearance.CheckedBackColor = Color.Black; this.MnC16.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC16.FlatStyle = FlatStyle.Flat; this.MnC16.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC16.ForeColor = SystemColors.ActiveCaptionText; this.MnC16.Location = new Point(15, 0x98); this.MnC16.Name = "MnC16"; this.MnC16.Size = new Size(40, 40); this.MnC16.TabIndex = 0x83; this.MnC16.Text = "16"; this.MnC16.TextAlign = ContentAlignment.TopLeft; this.MnC16.UseVisualStyleBackColor = true; this.MnC16.Click += new EventHandler(this.MnC16_Click); this.MnC35.BackgroundImageLayout = ImageLayout.Stretch; this.MnC35.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC35.FlatAppearance.BorderSize = 2; this.MnC35.FlatAppearance.CheckedBackColor = Color.Black; this.MnC35.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC35.FlatStyle = FlatStyle.Flat; this.MnC35.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC35.ForeColor = SystemColors.ActiveCaptionText; this.MnC35.Location = new Point(0xc6, 290); this.MnC35.Name = "MnC35"; this.MnC35.Size = new Size(40, 40); this.MnC35.TabIndex = 150; this.MnC35.Text = "35"; this.MnC35.TextAlign = ContentAlignment.TopLeft; this.MnC35.UseVisualStyleBackColor = true; this.MnC35.Visible = false; this.MnC35.Click += new EventHandler(this.MnC35_Click); this.MnC17.BackgroundImageLayout = ImageLayout.Stretch; this.MnC17.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC17.FlatAppearance.BorderSize = 2; this.MnC17.FlatAppearance.CheckedBackColor = Color.Black; this.MnC17.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC17.FlatStyle = FlatStyle.Flat; this.MnC17.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC17.ForeColor = SystemColors.ActiveCaptionText; this.MnC17.Location = new Point(0x3d, 0x98); this.MnC17.Name = "MnC17"; this.MnC17.Size = new Size(40, 40); this.MnC17.TabIndex = 0x84; this.MnC17.Text = "17"; this.MnC17.TextAlign = ContentAlignment.TopLeft; this.MnC17.UseVisualStyleBackColor = true; this.MnC17.Click += new EventHandler(this.MnC17_Click); this.MnC34.BackgroundImageLayout = ImageLayout.Stretch; this.MnC34.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC34.FlatAppearance.BorderSize = 2; this.MnC34.FlatAppearance.CheckedBackColor = Color.Black; this.MnC34.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC34.FlatStyle = FlatStyle.Flat; this.MnC34.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC34.ForeColor = SystemColors.ActiveCaptionText; this.MnC34.Location = new Point(0x99, 290); this.MnC34.Name = "MnC34"; this.MnC34.Size = new Size(40, 40); this.MnC34.TabIndex = 0x95; this.MnC34.Text = "34"; this.MnC34.TextAlign = ContentAlignment.TopLeft; this.MnC34.UseVisualStyleBackColor = true; this.MnC34.Visible = false; this.MnC34.Click += new EventHandler(this.MnC34_Click); this.MnC18.BackgroundImageLayout = ImageLayout.Stretch; this.MnC18.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC18.FlatAppearance.BorderSize = 2; this.MnC18.FlatAppearance.CheckedBackColor = Color.Black; this.MnC18.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC18.FlatStyle = FlatStyle.Flat; this.MnC18.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC18.ForeColor = SystemColors.ActiveCaptionText; this.MnC18.Location = new Point(0x6b, 0x98); this.MnC18.Name = "MnC18"; this.MnC18.Size = new Size(40, 40); this.MnC18.TabIndex = 0x85; this.MnC18.Text = "18"; this.MnC18.TextAlign = ContentAlignment.TopLeft; this.MnC18.UseVisualStyleBackColor = true; this.MnC18.Click += new EventHandler(this.MnC18_Click); this.MnC33.BackgroundImageLayout = ImageLayout.Stretch; this.MnC33.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC33.FlatAppearance.BorderSize = 2; this.MnC33.FlatAppearance.CheckedBackColor = Color.Black; this.MnC33.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC33.FlatStyle = FlatStyle.Flat; this.MnC33.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC33.ForeColor = SystemColors.ActiveCaptionText; this.MnC33.Location = new Point(0x6b, 290); this.MnC33.Name = "MnC33"; this.MnC33.Size = new Size(40, 40); this.MnC33.TabIndex = 0x94; this.MnC33.Text = "33"; this.MnC33.TextAlign = ContentAlignment.TopLeft; this.MnC33.UseVisualStyleBackColor = true; this.MnC33.Visible = false; this.MnC33.Click += new EventHandler(this.MnC33_Click); this.MnC19.BackgroundImageLayout = ImageLayout.Stretch; this.MnC19.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC19.FlatAppearance.BorderSize = 2; this.MnC19.FlatAppearance.CheckedBackColor = Color.Black; this.MnC19.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC19.FlatStyle = FlatStyle.Flat; this.MnC19.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC19.ForeColor = SystemColors.ActiveCaptionText; this.MnC19.Location = new Point(0x99, 0x98); this.MnC19.Name = "MnC19"; this.MnC19.Size = new Size(40, 40); this.MnC19.TabIndex = 0x86; this.MnC19.Text = "19"; this.MnC19.TextAlign = ContentAlignment.TopLeft; this.MnC19.UseVisualStyleBackColor = true; this.MnC19.Click += new EventHandler(this.MnC19_Click); this.MnC32.BackgroundImageLayout = ImageLayout.Stretch; this.MnC32.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC32.FlatAppearance.BorderSize = 2; this.MnC32.FlatAppearance.CheckedBackColor = Color.Black; this.MnC32.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC32.FlatStyle = FlatStyle.Flat; this.MnC32.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC32.ForeColor = SystemColors.ActiveCaptionText; this.MnC32.Location = new Point(0x3d, 290); this.MnC32.Name = "MnC32"; this.MnC32.Size = new Size(40, 40); this.MnC32.TabIndex = 0x93; this.MnC32.Text = "32"; this.MnC32.TextAlign = ContentAlignment.TopLeft; this.MnC32.UseVisualStyleBackColor = true; this.MnC32.Visible = false; this.MnC32.Click += new EventHandler(this.MnC32_Click); this.MnC20.BackgroundImageLayout = ImageLayout.Stretch; this.MnC20.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC20.FlatAppearance.BorderSize = 2; this.MnC20.FlatAppearance.CheckedBackColor = Color.Black; this.MnC20.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC20.FlatStyle = FlatStyle.Flat; this.MnC20.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC20.ForeColor = SystemColors.ActiveCaptionText; this.MnC20.Location = new Point(0xc6, 0x98); this.MnC20.Name = "MnC20"; this.MnC20.Size = new Size(40, 40); this.MnC20.TabIndex = 0x87; this.MnC20.Text = "20"; this.MnC20.TextAlign = ContentAlignment.TopLeft; this.MnC20.UseVisualStyleBackColor = true; this.MnC20.Click += new EventHandler(this.MnC20_Click); this.MnC31.BackgroundImageLayout = ImageLayout.Stretch; this.MnC31.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC31.FlatAppearance.BorderSize = 2; this.MnC31.FlatAppearance.CheckedBackColor = Color.Black; this.MnC31.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC31.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC31.FlatStyle = FlatStyle.Flat; this.MnC31.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC31.ForeColor = SystemColors.ActiveCaptionText; this.MnC31.Location = new Point(15, 290); this.MnC31.Name = "MnC31"; this.MnC31.Size = new Size(40, 40); this.MnC31.TabIndex = 0x92; this.MnC31.Text = "31"; this.MnC31.TextAlign = ContentAlignment.TopLeft; this.MnC31.UseVisualStyleBackColor = true; this.MnC31.Visible = false; this.MnC31.Click += new EventHandler(this.MnC31_Click); this.MnC21.BackgroundImageLayout = ImageLayout.Stretch; this.MnC21.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC21.FlatAppearance.BorderSize = 2; this.MnC21.FlatAppearance.CheckedBackColor = Color.Black; this.MnC21.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC21.FlatAppearance.MouseOverBackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MnC21.FlatStyle = FlatStyle.Flat; this.MnC21.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC21.ForeColor = SystemColors.ActiveCaptionText; this.MnC21.Location = new Point(15, 0xc6); this.MnC21.Name = "MnC21"; this.MnC21.Size = new Size(40, 40); this.MnC21.TabIndex = 0x88; this.MnC21.Text = "21"; this.MnC21.TextAlign = ContentAlignment.TopLeft; this.MnC21.UseVisualStyleBackColor = true; this.MnC21.Visible = false; this.MnC21.Click += new EventHandler(this.MnC21_Click); this.MnC30.BackgroundImageLayout = ImageLayout.Stretch; this.MnC30.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC30.FlatAppearance.BorderSize = 2; this.MnC30.FlatAppearance.CheckedBackColor = Color.Black; this.MnC30.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC30.FlatStyle = FlatStyle.Flat; this.MnC30.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC30.ForeColor = SystemColors.ActiveCaptionText; this.MnC30.Location = new Point(0xc6, 0xf4); this.MnC30.Name = "MnC30"; this.MnC30.Size = new Size(40, 40); this.MnC30.TabIndex = 0x91; this.MnC30.Text = "30"; this.MnC30.TextAlign = ContentAlignment.TopLeft; this.MnC30.UseVisualStyleBackColor = true; this.MnC30.Visible = false; this.MnC30.Click += new EventHandler(this.MnC30_Click); this.MnC22.BackgroundImageLayout = ImageLayout.Stretch; this.MnC22.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC22.FlatAppearance.BorderSize = 2; this.MnC22.FlatAppearance.CheckedBackColor = Color.Black; this.MnC22.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC22.FlatStyle = FlatStyle.Flat; this.MnC22.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC22.ForeColor = SystemColors.ActiveCaptionText; this.MnC22.Location = new Point(0x3d, 0xc6); this.MnC22.Name = "MnC22"; this.MnC22.Size = new Size(40, 40); this.MnC22.TabIndex = 0x89; this.MnC22.Text = "22"; this.MnC22.TextAlign = ContentAlignment.TopLeft; this.MnC22.UseVisualStyleBackColor = true; this.MnC22.Visible = false; this.MnC22.Click += new EventHandler(this.MnC22_Click); this.MnC29.BackgroundImageLayout = ImageLayout.Stretch; this.MnC29.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC29.FlatAppearance.BorderSize = 2; this.MnC29.FlatAppearance.CheckedBackColor = Color.Black; this.MnC29.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC29.FlatStyle = FlatStyle.Flat; this.MnC29.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC29.ForeColor = SystemColors.ActiveCaptionText; this.MnC29.Location = new Point(0x99, 0xf4); this.MnC29.Name = "MnC29"; this.MnC29.Size = new Size(40, 40); this.MnC29.TabIndex = 0x90; this.MnC29.Text = "29"; this.MnC29.TextAlign = ContentAlignment.TopLeft; this.MnC29.UseVisualStyleBackColor = true; this.MnC29.Visible = false; this.MnC29.Click += new EventHandler(this.MnC29_Click); this.MnC23.BackgroundImageLayout = ImageLayout.Stretch; this.MnC23.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC23.FlatAppearance.BorderSize = 2; this.MnC23.FlatAppearance.CheckedBackColor = Color.Black; this.MnC23.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC23.FlatStyle = FlatStyle.Flat; this.MnC23.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC23.ForeColor = SystemColors.ActiveCaptionText; this.MnC23.Location = new Point(0x6b, 0xc6); this.MnC23.Name = "MnC23"; this.MnC23.Size = new Size(40, 40); this.MnC23.TabIndex = 0x8a; this.MnC23.Text = "23"; this.MnC23.TextAlign = ContentAlignment.TopLeft; this.MnC23.UseVisualStyleBackColor = true; this.MnC23.Visible = false; this.MnC23.Click += new EventHandler(this.MnC23_Click); this.MnC28.BackgroundImageLayout = ImageLayout.Stretch; this.MnC28.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC28.FlatAppearance.BorderSize = 2; this.MnC28.FlatAppearance.CheckedBackColor = Color.Black; this.MnC28.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC28.FlatStyle = FlatStyle.Flat; this.MnC28.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC28.ForeColor = SystemColors.ActiveCaptionText; this.MnC28.Location = new Point(0x6b, 0xf4); this.MnC28.Name = "MnC28"; this.MnC28.Size = new Size(40, 40); this.MnC28.TabIndex = 0x8f; this.MnC28.Text = "28"; this.MnC28.TextAlign = ContentAlignment.TopLeft; this.MnC28.UseVisualStyleBackColor = true; this.MnC28.Visible = false; this.MnC28.Click += new EventHandler(this.MnC28_Click); this.MnC24.BackgroundImageLayout = ImageLayout.Stretch; this.MnC24.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC24.FlatAppearance.BorderSize = 2; this.MnC24.FlatAppearance.CheckedBackColor = Color.Black; this.MnC24.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC24.FlatStyle = FlatStyle.Flat; this.MnC24.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC24.ForeColor = SystemColors.ActiveCaptionText; this.MnC24.Location = new Point(0x99, 0xc6); this.MnC24.Name = "MnC24"; this.MnC24.Size = new Size(40, 40); this.MnC24.TabIndex = 0x8b; this.MnC24.Text = "24"; this.MnC24.TextAlign = ContentAlignment.TopLeft; this.MnC24.UseVisualStyleBackColor = true; this.MnC24.Visible = false; this.MnC24.Click += new EventHandler(this.MnC24_Click); this.MnC27.BackgroundImageLayout = ImageLayout.Stretch; this.MnC27.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC27.FlatAppearance.BorderSize = 2; this.MnC27.FlatAppearance.CheckedBackColor = Color.Black; this.MnC27.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC27.FlatStyle = FlatStyle.Flat; this.MnC27.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC27.ForeColor = SystemColors.ActiveCaptionText; this.MnC27.Location = new Point(0x3d, 0xf4); this.MnC27.Name = "MnC27"; this.MnC27.Size = new Size(40, 40); this.MnC27.TabIndex = 0x8e; this.MnC27.Text = "27"; this.MnC27.TextAlign = ContentAlignment.TopLeft; this.MnC27.UseVisualStyleBackColor = true; this.MnC27.Visible = false; this.MnC27.Click += new EventHandler(this.MnC27_Click); this.MnC25.BackgroundImageLayout = ImageLayout.Stretch; this.MnC25.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC25.FlatAppearance.BorderSize = 2; this.MnC25.FlatAppearance.CheckedBackColor = Color.Black; this.MnC25.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC25.FlatStyle = FlatStyle.Flat; this.MnC25.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC25.ForeColor = SystemColors.ActiveCaptionText; this.MnC25.Location = new Point(0xc6, 0xc6); this.MnC25.Name = "MnC25"; this.MnC25.Size = new Size(40, 40); this.MnC25.TabIndex = 140; this.MnC25.Text = "25"; this.MnC25.TextAlign = ContentAlignment.TopLeft; this.MnC25.UseVisualStyleBackColor = true; this.MnC25.Visible = false; this.MnC25.Click += new EventHandler(this.MnC25_Click); this.MnC26.BackgroundImageLayout = ImageLayout.Stretch; this.MnC26.FlatAppearance.BorderColor = SystemColors.ActiveCaptionText; this.MnC26.FlatAppearance.BorderSize = 2; this.MnC26.FlatAppearance.CheckedBackColor = Color.Black; this.MnC26.FlatAppearance.MouseDownBackColor = Color.FromArgb(0xc0, 0xc0, 0xff); this.MnC26.FlatStyle = FlatStyle.Flat; this.MnC26.Font = new Font("Calibri", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); this.MnC26.ForeColor = SystemColors.ActiveCaptionText; this.MnC26.Location = new Point(15, 0xf4); this.MnC26.Name = "MnC26"; this.MnC26.Size = new Size(40, 40); this.MnC26.TabIndex = 0x8d; this.MnC26.Text = "26"; this.MnC26.TextAlign = ContentAlignment.TopLeft; this.MnC26.UseVisualStyleBackColor = true; this.MnC26.Visible = false; this.MnC26.Click += new EventHandler(this.MnC26_Click); this.refrMnC.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.refrMnC.BackColor = Color.White; this.refrMnC.Font = new Font("Adobe Fan Heiti Std B", 9.75f, FontStyle.Bold); this.refrMnC.Location = new Point(0x4d, 0x199); this.refrMnC.Multiline = true; this.refrMnC.Name = "refrMnC"; this.refrMnC.ReadOnly = true; this.refrMnC.ScrollBars = ScrollBars.Vertical; this.refrMnC.Size = new Size(0x2a5, 0x7c); this.refrMnC.TabIndex = 0x57; this.panel12.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel12.BackColor = Color.Transparent; this.panel12.Controls.Add(this.MnCopd); this.panel12.Controls.Add(this.MnCopc); this.panel12.Controls.Add(this.MnCopb); this.panel12.Controls.Add(this.MnCopa); this.panel12.Controls.Add(this.metroRadioButton17); this.panel12.Controls.Add(this.metroRadioButton18); this.panel12.Controls.Add(this.metroRadioButton19); this.panel12.Controls.Add(this.metroRadioButton20); this.panel12.Location = new Point(0x4d, 0x10f); this.panel12.Name = "panel12"; this.panel12.Size = new Size(0x2a5, 0x84); this.panel12.TabIndex = 0x56; this.MnCopd.AutoSize = true; this.MnCopd.Font = new Font("Britannic Bold", 11.25f); this.MnCopd.Location = new Point(60, 0x6b); this.MnCopd.Name = "MnCopd"; this.MnCopd.Size = new Size(0x24, 0x10); this.MnCopd.TabIndex = 0x6b; this.MnCopd.Text = "OpD"; this.MnCopc.AutoSize = true; this.MnCopc.Font = new Font("Britannic Bold", 11.25f, FontStyle.Regular, GraphicsUnit.Point, 0); this.MnCopc.Location = new Point(60, 0x49); this.MnCopc.Name = "MnCopc"; this.MnCopc.Size = new Size(0x23, 0x10); this.MnCopc.TabIndex = 0x6a; this.MnCopc.Text = "OpC"; this.MnCopb.AutoSize = true; this.MnCopb.Font = new Font("Britannic Bold", 11.25f); this.MnCopb.Location = new Point(0x3a, 40); this.MnCopb.Name = "MnCopb"; this.MnCopb.Size = new Size(0x23, 0x10); this.MnCopb.TabIndex = 0x69; this.MnCopb.Text = "OpB"; this.MnCopa.AutoSize = true; this.MnCopa.Font = new Font("Britannic Bold", 11.25f); this.MnCopa.Location = new Point(0x3a, 7); this.MnCopa.Name = "MnCopa"; this.MnCopa.Size = new Size(0x22, 0x10); this.MnCopa.TabIndex = 0x68; this.MnCopa.Text = "OpA"; this.metroRadioButton17.AutoSize = true; this.metroRadioButton17.Location = new Point(0x17, 8); this.metroRadioButton17.Name = "metroRadioButton17"; this.metroRadioButton17.Size = new Size(0x1f, 15); this.metroRadioButton17.Style = MetroColorStyle.Blue; this.metroRadioButton17.TabIndex = 0x1b; this.metroRadioButton17.TabStop = true; this.metroRadioButton17.Text = "A"; this.metroRadioButton17.Theme = MetroThemeStyle.Light; this.metroRadioButton17.UseCustomBackColor = true; this.metroRadioButton17.UseSelectable = true; this.metroRadioButton17.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton17.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton18.AutoSize = true; this.metroRadioButton18.Location = new Point(0x17, 40); this.metroRadioButton18.Name = "metroRadioButton18"; this.metroRadioButton18.Size = new Size(30, 15); this.metroRadioButton18.Style = MetroColorStyle.Blue; this.metroRadioButton18.TabIndex = 0x1c; this.metroRadioButton18.TabStop = true; this.metroRadioButton18.Text = "B"; this.metroRadioButton18.Theme = MetroThemeStyle.Light; this.metroRadioButton18.UseSelectable = true; this.metroRadioButton18.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton18.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton19.AutoSize = true; this.metroRadioButton19.Location = new Point(0x17, 0x4a); this.metroRadioButton19.Name = "metroRadioButton19"; this.metroRadioButton19.Size = new Size(0x1f, 15); this.metroRadioButton19.Style = MetroColorStyle.Blue; this.metroRadioButton19.TabIndex = 0x1d; this.metroRadioButton19.TabStop = true; this.metroRadioButton19.Text = "C"; this.metroRadioButton19.Theme = MetroThemeStyle.Light; this.metroRadioButton19.UseSelectable = true; this.metroRadioButton19.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton19.Click += new EventHandler(this.radioButton_Click4MnC); this.metroRadioButton20.AutoSize = true; this.metroRadioButton20.Location = new Point(0x17, 0x6b); this.metroRadioButton20.Name = "metroRadioButton20"; this.metroRadioButton20.Size = new Size(0x1f, 15); this.metroRadioButton20.Style = MetroColorStyle.Blue; this.metroRadioButton20.TabIndex = 30; this.metroRadioButton20.TabStop = true; this.metroRadioButton20.Text = "D"; this.metroRadioButton20.Theme = MetroThemeStyle.Light; this.metroRadioButton20.UseCustomBackColor = true; this.metroRadioButton20.UseSelectable = true; this.metroRadioButton20.CheckedChanged += new EventHandler(this.rbchk4mnc); this.metroRadioButton20.Click += new EventHandler(this.radioButton_Click4MnC); this.sec5.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.sec5.BackColor = Color.White; this.sec5.Font = new Font("Calibri", 15.75f, FontStyle.Regular, GraphicsUnit.Point, 0); this.sec5.Location = new Point(0x4d, 3); this.sec5.Multiline = true; this.sec5.Name = "sec5"; this.sec5.ReadOnly = true; this.sec5.ScrollBars = ScrollBars.Vertical; this.sec5.Size = new Size(0x2a5, 0x106); this.sec5.TabIndex = 0x55; this.metroPanel2.HorizontalScrollbarBarColor = true; this.metroPanel2.HorizontalScrollbarHighlightOnWheel = false; this.metroPanel2.HorizontalScrollbarSize = 10; this.metroPanel2.Location = new Point(12, 0x4c); this.metroPanel2.Name = "metroPanel2"; this.metroPanel2.Size = new Size(0x36d, 0x1ad); this.metroPanel2.Style = MetroColorStyle.Blue; this.metroPanel2.TabIndex = 0x11; this.metroPanel2.Theme = MetroThemeStyle.Light; this.metroPanel2.VerticalScrollbarBarColor = true; this.metroPanel2.VerticalScrollbarHighlightOnWheel = false; this.metroPanel2.VerticalScrollbarSize = 10; this.timer1.Interval = 0x3e8; this.timer1.Tick += new EventHandler(this.timer1_Tick); this.backgroundWorker1.WorkerReportsProgress = true; this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork); this.backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged); this.revbtn.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.revbtn.Enabled = false; this.revbtn.Location = new Point(0x217, 30); this.revbtn.Name = "revbtn"; this.revbtn.Size = new Size(0x4b, 0x17); this.revbtn.Style = MetroColorStyle.Blue; this.revbtn.TabIndex = 2; this.revbtn.Text = "Review"; this.revbtn.Theme = MetroThemeStyle.Dark; this.revbtn.UseSelectable = true; this.revbtn.Click += new EventHandler(this.metroButton9_Click_1); this.metroProgressBar1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroProgressBar1.FontWeight = MetroProgressBarWeight.Regular; this.metroProgressBar1.Location = new Point(0x6b, 30); this.metroProgressBar1.Name = "metroProgressBar1"; this.metroProgressBar1.ProgressBarStyle = ProgressBarStyle.Blocks; this.metroProgressBar1.Size = new Size(0x11a, 0x17); this.metroProgressBar1.Style = MetroColorStyle.Blue; this.metroProgressBar1.TabIndex = 3; this.metroProgressBar1.TextAlign = ContentAlignment.MiddleCenter; this.metroProgressBar1.Theme = MetroThemeStyle.Dark; this.metroLabel21.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel21.AutoSize = true; this.metroLabel21.BackColor = SystemColors.ActiveCaptionText; this.metroLabel21.FontWeight = MetroLabelWeight.Bold; this.metroLabel21.ForeColor = Color.Black; this.metroLabel21.Location = new Point(0x11f, 0x87); this.metroLabel21.Name = "metroLabel21"; this.metroLabel21.Size = new Size(0x70, 0x13); this.metroLabel21.Style = MetroColorStyle.Blue; this.metroLabel21.TabIndex = 4; this.metroLabel21.Text = "Total Answered"; this.metroLabel21.Theme = MetroThemeStyle.Dark; this.metroLabel21.UseCustomBackColor = true; this.metroLabel21.UseStyleColors = true; this.total.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.total.AutoSize = true; this.total.FontWeight = MetroLabelWeight.Bold; this.total.Location = new Point(0x1f2, 0x88); this.total.Name = "total"; this.total.Size = new Size(15, 0x13); this.total.Style = MetroColorStyle.Blue; this.total.TabIndex = 5; this.total.Text = "-"; this.total.Theme = MetroThemeStyle.Dark; this.total.UseCustomBackColor = true; this.total.UseStyleColors = true; this.metroLabel22.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel22.AutoSize = true; this.metroLabel22.FontWeight = MetroLabelWeight.Bold; this.metroLabel22.Location = new Point(0x11f, 0xb8); this.metroLabel22.Name = "metroLabel22"; this.metroLabel22.Size = new Size(0x51, 0x13); this.metroLabel22.Style = MetroColorStyle.Green; this.metroLabel22.TabIndex = 6; this.metroLabel22.Text = "Total Right"; this.metroLabel22.Theme = MetroThemeStyle.Dark; this.metroLabel22.UseCustomBackColor = true; this.metroLabel22.UseStyleColors = true; this.metroLabel23.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel23.AutoSize = true; this.metroLabel23.FontWeight = MetroLabelWeight.Bold; this.metroLabel23.Location = new Point(0x11f, 0xed); this.metroLabel23.Name = "metroLabel23"; this.metroLabel23.Size = new Size(0x5c, 0x13); this.metroLabel23.Style = MetroColorStyle.Red; this.metroLabel23.TabIndex = 7; this.metroLabel23.Text = "Total Wrong"; this.metroLabel23.Theme = MetroThemeStyle.Dark; this.metroLabel23.UseCustomBackColor = true; this.metroLabel23.UseStyleColors = true; this.right.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.right.AutoSize = true; this.right.FontWeight = MetroLabelWeight.Bold; this.right.Location = new Point(0x1f2, 0xba); this.right.Name = "right"; this.right.Size = new Size(15, 0x13); this.right.Style = MetroColorStyle.Green; this.right.TabIndex = 8; this.right.Text = "-"; this.right.Theme = MetroThemeStyle.Dark; this.right.UseCustomBackColor = true; this.right.UseStyleColors = true; this.wrong.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.wrong.AutoSize = true; this.wrong.FontWeight = MetroLabelWeight.Bold; this.wrong.Location = new Point(0x1f2, 0xef); this.wrong.Name = "wrong"; this.wrong.Size = new Size(15, 0x13); this.wrong.Style = MetroColorStyle.Red; this.wrong.TabIndex = 9; this.wrong.Text = "-"; this.wrong.Theme = MetroThemeStyle.Dark; this.wrong.UseCustomBackColor = true; this.wrong.UseStyleColors = true; this.metroLabel24.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroLabel24.AutoSize = true; this.metroLabel24.FontWeight = MetroLabelWeight.Bold; this.metroLabel24.Location = new Point(0x121, 0x11b); this.metroLabel24.Name = "metroLabel24"; this.metroLabel24.Size = new Size(0x5b, 0x13); this.metroLabel24.Style = MetroColorStyle.Blue; this.metroLabel24.TabIndex = 10; this.metroLabel24.Text = "Unanswered"; this.metroLabel24.Theme = MetroThemeStyle.Dark; this.metroLabel24.UseCustomBackColor = true; this.unans.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.unans.AutoSize = true; this.unans.FontWeight = MetroLabelWeight.Bold; this.unans.Location = new Point(500, 0x11d); this.unans.Name = "unans"; this.unans.Size = new Size(15, 0x13); this.unans.Style = MetroColorStyle.Blue; this.unans.TabIndex = 11; this.unans.Text = "-"; this.unans.Theme = MetroThemeStyle.Dark; this.unans.UseCustomBackColor = true; this.pictureBox1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.pictureBox1.BackColor = Color.Black; this.pictureBox1.Image = Resources.mta; this.pictureBox1.Location = new Point(0x304, 0xc2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(0x38, 0x36); this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 0x5d; this.pictureBox1.TabStop = false; this.pass.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.pass.AutoSize = true; this.pass.FontSize = MetroLabelSize.Tall; this.pass.FontWeight = MetroLabelWeight.Bold; this.pass.Location = new Point(0x33d, 0xcd); this.pass.Name = "pass"; this.pass.Size = new Size(90, 0x19); this.pass.Style = MetroColorStyle.Green; this.pass.TabIndex = 0x5e; this.pass.Text = "Loading.."; this.pass.Theme = MetroThemeStyle.Dark; this.pass.UseCustomBackColor = true; this.pass.UseStyleColors = true; this.pass.Visible = false; this.fail.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.fail.AutoSize = true; this.fail.FontSize = MetroLabelSize.Tall; this.fail.FontWeight = MetroLabelWeight.Bold; this.fail.Location = new Point(0x33d, 0xd1); this.fail.Name = "fail"; this.fail.Size = new Size(100, 0x19); this.fail.Style = MetroColorStyle.Red; this.fail.TabIndex = 0x5f; this.fail.Text = "Loading...."; this.fail.Theme = MetroThemeStyle.Dark; this.fail.UseCustomBackColor = true; this.fail.UseStyleColors = true; this.fail.Visible = false; this.metroProgressSpinner1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom; this.metroProgressSpinner1.Location = new Point(740, 0x231); this.metroProgressSpinner1.Maximum = 100; this.metroProgressSpinner1.Name = "metroProgressSpinner1"; this.metroProgressSpinner1.Size = new Size(20, 0x19); this.metroProgressSpinner1.TabIndex = 0x60; this.metroProgressSpinner1.Theme = MetroThemeStyle.Dark; this.metroProgressSpinner1.UseCustomBackColor = true; this.metroProgressSpinner1.UseSelectable = true; this.aftrsbmitpnl.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.aftrsbmitpnl.BackColor = Color.Black; this.aftrsbmitpnl.BackgroundImage = Resources.Brainy_icon; this.aftrsbmitpnl.BackgroundImageLayout = ImageLayout.Center; this.aftrsbmitpnl.Controls.Add(this.metroProgressSpinner1); this.aftrsbmitpnl.Controls.Add(this.fail); this.aftrsbmitpnl.Controls.Add(this.pass); this.aftrsbmitpnl.Controls.Add(this.pictureBox1); this.aftrsbmitpnl.Controls.Add(this.unans); this.aftrsbmitpnl.Controls.Add(this.metroLabel24); this.aftrsbmitpnl.Controls.Add(this.wrong); this.aftrsbmitpnl.Controls.Add(this.right); this.aftrsbmitpnl.Controls.Add(this.metroLabel23); this.aftrsbmitpnl.Controls.Add(this.metroLabel22); this.aftrsbmitpnl.Controls.Add(this.total); this.aftrsbmitpnl.Controls.Add(this.metroLabel21); this.aftrsbmitpnl.Controls.Add(this.metroProgressBar1); this.aftrsbmitpnl.Controls.Add(this.revbtn); this.aftrsbmitpnl.Location = new Point(0, 0x69); this.aftrsbmitpnl.Name = "aftrsbmitpnl"; this.aftrsbmitpnl.Size = new Size(0x400, 0x394); this.aftrsbmitpnl.TabIndex = 0x5d; this.aftrsbmitpnl.Visible = false; this.metroLabel46.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroLabel46.AutoSize = true; this.metroLabel46.FontWeight = MetroLabelWeight.Bold; this.metroLabel46.Location = new Point(0x42, 4); this.metroLabel46.Name = "metroLabel46"; this.metroLabel46.Size = new Size(0x319, 0x1db); this.metroLabel46.Style = MetroColorStyle.Green; this.metroLabel46.TabIndex = 100; this.metroLabel46.Text = manager.GetString("metroLabel46.Text"); this.metroLabel46.Theme = MetroThemeStyle.Light; this.metroLabel46.UseCustomBackColor = true; this.metroLabel46.UseStyleColors = true; this.metroLabel47.AutoSize = true; this.metroLabel47.FontWeight = MetroLabelWeight.Bold; this.metroLabel47.Location = new Point(0x42, 0x18c); this.metroLabel47.Name = "metroLabel47"; this.metroLabel47.Size = new Size(0x2e7, 0x13); this.metroLabel47.Style = MetroColorStyle.Red; this.metroLabel47.TabIndex = 0x65; this.metroLabel47.Text = "NOTE: FYI the scores once submitted for an exam then you cannot update your new score for the same exam!!"; this.metroLabel47.Theme = MetroThemeStyle.Dark; this.metroLabel47.UseCustomBackColor = true; this.metroLabel47.UseStyleColors = true; this.panel24.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top; this.panel24.BackColor = Color.Black; this.panel24.Controls.Add(this.metroLabel47); this.panel24.Controls.Add(this.metroLabel46); this.panel24.Location = new Point(0, 0x60); this.panel24.Name = "panel24"; this.panel24.Size = new Size(0x400, 0x290); this.panel24.TabIndex = 0x60; this.panel24.Visible = false; this.online.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.online.Enabled = false; this.online.Location = new Point(0x285, 4); this.online.Name = "online"; this.online.Size = new Size(0x70, 30); this.online.Style = MetroColorStyle.Blue; this.online.TabIndex = 0x60; this.online.Text = "Top 5 Scorers"; this.online.Theme = MetroThemeStyle.Dark; this.online.UseSelectable = true; this.online.UseStyleColors = true; this.online.Click += new EventHandler(this.online_Click); this.metroButton7.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.metroButton7.Location = new Point(90, 9); this.metroButton7.Name = "metroButton7"; this.metroButton7.Size = new Size(0, 30); this.metroButton7.Style = MetroColorStyle.Blue; this.metroButton7.TabIndex = 0x15; this.metroButton7.Text = "Load Ans"; this.metroButton7.Theme = MetroThemeStyle.Dark; this.metroButton7.UseSelectable = true; this.metroButton7.Visible = false; this.metroButton7.Click += new EventHandler(this.metroButton7_Click); this.metroButton6.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton6.Location = new Point(0x1fd, 4); this.metroButton6.Name = "metroButton6"; this.metroButton6.Size = new Size(100, 30); this.metroButton6.Style = MetroColorStyle.Blue; this.metroButton6.TabIndex = 20; this.metroButton6.Text = "Reset Pic"; this.metroButton6.Theme = MetroThemeStyle.Dark; this.metroButton6.UseSelectable = true; this.metroButton6.UseStyleColors = true; this.metroButton6.Click += new EventHandler(this.metroButton6_Click); this.panel3.BackColor = Color.Transparent; this.panel3.BackgroundImage = Resources.new_clock; this.panel3.BackgroundImageLayout = ImageLayout.Stretch; this.panel3.Controls.Add(this.pictureBox22); this.panel3.Controls.Add(this.lblSec); this.panel3.Controls.Add(this.lblMin); this.panel3.Controls.Add(this.lblHr); this.panel3.Font = new Font("Microsoft Sans Serif", 15.75f, FontStyle.Bold, GraphicsUnit.Point, 0); this.panel3.Location = new Point(0x55, -2); this.panel3.Name = "panel3"; this.panel3.Size = new Size(0xd0, 0x29); this.panel3.TabIndex = 0x13; this.lblHr.AutoSize = true; this.lblHr.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblHr.ForeColor = SystemColors.ControlLightLight; this.lblHr.Location = new Point(0x1b, 5); this.lblHr.Name = "lblHr"; this.lblHr.Size = new Size(0x20, 0x18); this.lblHr.TabIndex = 0x17; this.lblHr.Text = "00"; this.lblMin.AutoSize = true; this.lblMin.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblMin.ForeColor = SystemColors.ControlLightLight; this.lblMin.Location = new Point(0x58, 5); this.lblMin.Name = "lblMin"; this.lblMin.Size = new Size(0x20, 0x18); this.lblMin.TabIndex = 0x18; this.lblMin.Text = "00"; this.lblMin.Click += new EventHandler(this.lblMin_Click); this.lblSec.AutoSize = true; this.lblSec.BackColor = Color.Transparent; this.lblSec.Font = new Font("Microsoft Sans Serif", 14.25f, FontStyle.Bold, GraphicsUnit.Point, 0); this.lblSec.ForeColor = SystemColors.ControlLightLight; this.lblSec.Location = new Point(0x97, 5); this.lblSec.Name = "lblSec"; this.lblSec.Size = new Size(0x20, 0x18); this.lblSec.TabIndex = 0x19; this.lblSec.Text = "00"; this.pictureBox22.Image = Resources.sending; this.pictureBox22.Location = new Point(0xc0, 0x16); this.pictureBox22.Name = "pictureBox22"; this.pictureBox22.Size = new Size(0x10, 0x13); this.pictureBox22.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox22.TabIndex = 0x62; this.pictureBox22.TabStop = false; this.pictureBox22.Visible = false; this.submit.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.submit.Location = new Point(650, 14); this.submit.Name = "submit"; this.submit.Size = new Size(40, 20); this.submit.TabIndex = 0x5b; this.submit.Visible = false; this.panel23.BackgroundImageLayout = ImageLayout.Stretch; this.panel23.Controls.Add(this.metroLabel45); this.panel23.Controls.Add(this.panel22); this.panel23.Location = new Point(0x12b, 3); this.panel23.Name = "panel23"; this.panel23.Size = new Size(0x9f, 30); this.panel23.TabIndex = 0x63; this.panel23.Visible = false; this.panel22.BackgroundImage = Resources.icon_timer; this.panel22.BackgroundImageLayout = ImageLayout.Stretch; this.panel22.Location = new Point(3, 1); this.panel22.Name = "panel22"; this.panel22.Size = new Size(0x21, 0x1c); this.panel22.TabIndex = 0x62; this.metroLabel45.AutoSize = true; this.metroLabel45.FontWeight = MetroLabelWeight.Bold; this.metroLabel45.Location = new Point(0x2a, 8); this.metroLabel45.Name = "metroLabel45"; this.metroLabel45.Size = new Size(0x97, 0x13); this.metroLabel45.Style = MetroColorStyle.Red; this.metroLabel45.TabIndex = 0x63; this.metroLabel45.Text = "Hurry Up!!!................"; this.metroLabel45.Theme = MetroThemeStyle.Dark; this.metroLabel45.UseCustomBackColor = true; this.metroLabel45.UseStyleColors = true; this.metroButton8.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton8.Enabled = false; this.metroButton8.Location = new Point(0x39c, 4); this.metroButton8.Name = "metroButton8"; this.metroButton8.Size = new Size(0x5d, 30); this.metroButton8.Style = MetroColorStyle.Blue; this.metroButton8.TabIndex = 0x12; this.metroButton8.Text = "Submit"; this.metroButton8.Theme = MetroThemeStyle.Dark; this.metroButton8.UseSelectable = true; this.metroButton8.UseStyleColors = true; this.metroButton8.Click += new EventHandler(this.metroButton8_Click); this.metroButton1.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton1.Location = new Point(0x31a, 4); this.metroButton1.Name = "metroButton1"; this.metroButton1.Size = new Size(0x5e, 30); this.metroButton1.Style = MetroColorStyle.Blue; this.metroButton1.TabIndex = 1; this.metroButton1.Text = "Start"; this.metroButton1.Theme = MetroThemeStyle.Dark; this.metroButton1.UseSelectable = true; this.metroButton1.UseStyleColors = true; this.metroButton1.Click += new EventHandler(this.metroButton1_Click); this.metroButton2.Anchor = AnchorStyles.Right | AnchorStyles.Top; this.metroButton2.Location = new Point(0x39c, 4); this.metroButton2.Name = "metroButton2"; this.metroButton2.Size = new Size(0x5d, 30); this.metroButton2.TabIndex = 100; this.metroButton2.Text = "Submit"; this.metroButton2.Theme = MetroThemeStyle.Dark; this.metroButton2.UseSelectable = true; this.metroButton2.UseStyleColors = true; this.metroButton2.Click += new EventHandler(this.metroButton8_Click); this.button1.BackgroundImage = Resources.hom; this.button1.BackgroundImageLayout = ImageLayout.Stretch; this.button1.Location = new Point(9, -2); this.button1.Name = "button1"; this.button1.Size = new Size(0x41, 0x29); this.button1.TabIndex = 0x61; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new EventHandler(this.button1_Click_1); this.panel25.Controls.Add(this.button1); this.panel25.Controls.Add(this.panel23); this.panel25.Controls.Add(this.panel3); this.panel25.Controls.Add(this.metroButton7); this.panel25.Location = new Point(4, 2); this.panel25.Name = "panel25"; this.panel25.Size = new Size(0x1e2, 0x2d); this.panel25.TabIndex = 0x65; this.panel8.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top; this.panel8.BackColor = Color.Transparent; this.panel8.Controls.Add(this.ref4DI); this.panel8.Controls.Add(this.sec2); this.panel8.Controls.Add(this.panel1); this.panel8.Location = new Point(0x3e, 0x120); this.panel8.Name = "panel8"; this.panel8.Size = new Size(0x2af, 0x162); this.panel8.TabIndex = 80; this.AllowDrop = true; base.AutoScaleDimensions = new SizeF(96f, 96f); base.AutoScaleMode = AutoScaleMode.Dpi; this.AutoSize = true; this.BackColor = Color.DeepSkyBlue; this.BackgroundImageLayout = ImageLayout.None; base.ClientSize = new Size(0x400, 0x2d9); base.Controls.Add(this.panel25); base.Controls.Add(this.metroButton2); base.Controls.Add(this.panel24); base.Controls.Add(this.metroButton1); base.Controls.Add(this.aftrsbmitpnl); base.Controls.Add(this.metroButton8); base.Controls.Add(this.metroTabControl1); base.Controls.Add(this.metroPanel2); base.Controls.Add(this.metroButton6); base.Controls.Add(this.online); base.Controls.Add(this.submit); base.FormBorderStyle = FormBorderStyle.None; base.Icon = (Icon) manager.GetObject("$this.Icon"); base.MinimizeBox = false; base.Name = "Form1"; this.Text = "MTA Exam Simulator Beta"; base.Load += new EventHandler(this.Form1_Load); base.DragDrop += new DragEventHandler(this.Form1_DragDrop); base.DragEnter += new DragEventHandler(this.Form1_DragEnter); this.metroTabControl1.ResumeLayout(false); this.QAtab.ResumeLayout(false); this.QAtab.PerformLayout(); ((ISupportInitialize) this.picBox).EndInit(); this.panel13.ResumeLayout(false); this.panel13.PerformLayout(); ((ISupportInitialize) this.pictureBox5).EndInit(); ((ISupportInitialize) this.pictureBox4).EndInit(); ((ISupportInitialize) this.pictureBox3).EndInit(); ((ISupportInitialize) this.pictureBox2).EndInit(); this.adminchk.ResumeLayout(false); this.adminchk.PerformLayout(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel2.ResumeLayout(false); this.ENGtab.ResumeLayout(false); this.ENGtab.PerformLayout(); this.panel18.ResumeLayout(false); this.panel18.PerformLayout(); this.panel14.ResumeLayout(false); this.panel14.PerformLayout(); ((ISupportInitialize) this.pictureBox6).EndInit(); ((ISupportInitialize) this.pictureBox7).EndInit(); ((ISupportInitialize) this.pictureBox8).EndInit(); ((ISupportInitialize) this.pictureBox9).EndInit(); this.panel6.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel4.PerformLayout(); this.GKtab.ResumeLayout(false); this.GKtab.PerformLayout(); this.panel19.ResumeLayout(false); this.panel19.PerformLayout(); this.panel15.ResumeLayout(false); this.panel15.PerformLayout(); ((ISupportInitialize) this.pictureBox10).EndInit(); ((ISupportInitialize) this.pictureBox11).EndInit(); ((ISupportInitialize) this.pictureBox12).EndInit(); ((ISupportInitialize) this.pictureBox13).EndInit(); this.panel7.ResumeLayout(false); this.panel5.ResumeLayout(false); this.panel5.PerformLayout(); this.RSNtab.ResumeLayout(false); this.RSNtab.PerformLayout(); this.panel20.ResumeLayout(false); this.panel20.PerformLayout(); this.panel16.ResumeLayout(false); this.panel16.PerformLayout(); ((ISupportInitialize) this.pictureBox14).EndInit(); ((ISupportInitialize) this.pictureBox15).EndInit(); ((ISupportInitialize) this.pictureBox16).EndInit(); ((ISupportInitialize) this.pictureBox17).EndInit(); this.panel9.ResumeLayout(false); this.panel10.ResumeLayout(false); this.panel10.PerformLayout(); this.MnCtab.ResumeLayout(false); this.MnCtab.PerformLayout(); this.panel21.ResumeLayout(false); this.panel21.PerformLayout(); this.panel17.ResumeLayout(false); this.panel17.PerformLayout(); ((ISupportInitialize) this.pictureBox18).EndInit(); ((ISupportInitialize) this.pictureBox19).EndInit(); ((ISupportInitialize) this.pictureBox20).EndInit(); ((ISupportInitialize) this.pictureBox21).EndInit(); this.panel11.ResumeLayout(false); this.panel12.ResumeLayout(false); this.panel12.PerformLayout(); ((ISupportInitialize) this.pictureBox1).EndInit(); this.aftrsbmitpnl.ResumeLayout(false); this.aftrsbmitpnl.PerformLayout(); this.panel24.ResumeLayout(false); this.panel24.PerformLayout(); this.panel3.ResumeLayout(false); this.panel3.PerformLayout(); ((ISupportInitialize) this.pictureBox22).EndInit(); this.panel23.ResumeLayout(false); this.panel23.PerformLayout(); this.panel25.ResumeLayout(false); this.panel8.ResumeLayout(false); this.panel8.PerformLayout(); base.ResumeLayout(false); base.PerformLayout(); }
private void CloseTabPage(MetroTabPage page) { TabPages.Remove(page); OnTabPageClosed(page); }
public TabPageClosedEventArgs(MetroTabPage tabPage) { TabPage = tabPage; }
/// <summary> /// Initializes a new instance of the <see cref="TabPageClosedEventArgs"/> class. /// </summary> /// <param name="tabPage">The tab page.</param> public TabPageClosedEventArgs(MetroTabPage tabPage) { TabPage = tabPage; }
private void LoadPlugins() { this.Tabs.TabPages.Clear(); D3Class heroClass = (_Hero == null) ? D3Class.Unknown : _Hero.Class; foreach (IModule module in PluginLoader.LoadPlugins().Where(x => x.Classes.Contains(heroClass))) { if (module is UserControl) { module.LoadModule(Cache, _Career, _Hero); MetroTabPage page = new MetroTabPage { Text = module.ModuleName, AutoSize = true, Style = this.StyleManager.Style, Theme = this.StyleManager.Theme }; this.Tabs.TabPages.Add(page); UserControl control = (UserControl)module; this.ApplyStyleManagerToUserControl(control); page.Controls.Add(control); } } }
private void AddControlsToForm(MetroTabControl tabControl, int activeCount, int newSet) { TabPage page = tabControl.TabPages[tabControl.TabPages.Count - 1]; var newPage = new MetroTabPage { BackColor = Color.Transparent, Text = string.Format("{0}-{1}", activeCount + 2, activeCount + 11), }; if (newSet == 10 && tabControl.TabPages.Count < 10) tabControl.TabPages.Add(newPage); newPage.Controls.Add(new MetroLabel { FontWeight = MetroLabelWeight.Bold, Text = "Login Name", Theme = MetroThemeStyle.Dark, Style = MetroColorStyle.Blue, Location = new Point(3, 10), }); BtnStart.Enabled = false; BtnKill.Enabled = false; page.Controls.Add(LblAccountName); page.Controls.Add(BtnStart); page.Controls.Add(BtnKill); page.Controls.Add(BtnSchedule); page.Controls.Add(LblStatus); }
private void ReCaculatedTitlesSize(MetroTabPage tab) { var titles = tab.Controls.Cast<Control>().Where(p => p is MetroTile && p.Tag is Downloader).ToList(); if (titles.Count == 0) return; int x = 5; int y = 5; int maxwith = metroTabControl1.Width - 100 ; int maxheight = metroTabControl1.Height - 120; double square = maxheight * maxwith / titles.Count; int height = (int)Math.Sqrt(square) - 1; int width = (int)square / height - 1; SmartThreadPool pool = new SmartThreadPool(); foreach (var item in titles) { MetroTile metroTitle = item as MetroTile; //metroTitle.Style = MetroColorStyle.Red; metroTitle.Size = new System.Drawing.Size(width, height); metroTitle.Location = new Point(x, y); x += metroTitle.Width + 2; if (x >= maxwith) { x = 5; y = y + metroTitle.Height + 2; } pool.QueueWorkItem(delegate(object obj) { TitleLogoUpdate data = (TitleLogoUpdate)obj; if (!string.IsNullOrEmpty(data.Downloader.Logo)) { var img = data.Downloader.Logo.DownloadAsImage(); img = img.Clip(data.Title.Width, data.Title.Height); data.Title.TileImage = img; data.Title.UseTileImage = true; data.Title.TileImageAlign = ContentAlignment.MiddleCenter; data.Title.TextAlign = ContentAlignment.BottomCenter; } }, new TitleLogoUpdate() { Title = metroTitle, Downloader = (Downloader)metroTitle.Tag }); } pool.Start(); }
/// <summary> /// Sets the hover tab. /// </summary> /// <param name="page">The page.</param> private void SetHoverTab(MetroTabPage page) { _hoverTab = page; if (DesignMode) return; Invalidate(); }
/// <summary> /// This will disable a MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage">The tabpage.</param> public void DisableTab(MetroTabPage tabpage) { if (!tabDisable.Contains(tabpage.Name)) { if (this.SelectedTab == tabpage && this.TabCount == 1) return; if (this.SelectedTab == tabpage) { if (SelectedIndex == this.TabCount - 1) { SelectedIndex = 0; } else { SelectedIndex++; } } int _tabid = this.TabPages.IndexOf(tabpage); tabDisable.Add(tabpage.Name); Graphics e = this.CreateGraphics(); DrawTab(_tabid, e); DrawTabBottomBorder(SelectedIndex, e); DrawTabSelected(SelectedIndex, e); } }
/// <summary> /// This will check if MetroTabPage is enable or not /// true if enable otherwise false /// </summary> /// <param name="tabpage"></param> /// <returns></returns> public bool IsTabEnable(MetroTabPage tabpage) { return(tabDisable.Contains(tabpage.Name)); }
/// <summary> /// This will enable a MetroTabPage from MetroTabControl /// </summary> /// <param name="tabpage">The tabpage.</param> public void EnableTab(MetroTabPage tabpage) { if (tabDisable.Contains(tabpage.Name)) { tabDisable.Remove(tabpage.Name); int _tabid = this.TabPages.IndexOf(tabpage); Graphics e = this.CreateGraphics(); DrawTab(_tabid, e); DrawTabBottomBorder(SelectedIndex, e); DrawTabSelected(SelectedIndex, e); } }
private void tvBuilding_AfterSelect(object sender, TreeViewEventArgs e) { if (e.Node.Tag == null) return; FullBuilding building = e.Node.Tag as FullBuilding; _selectedNode = e.Node; if (!tabFloor.TabPages.ContainsKey("pageFloorAll")) { MetroTabPage pageAll = new MetroTabPage(); pageAll.Text = "所有"; pageAll.Name = "pageFloorAll"; pageAll.Tag = -1; tabFloor.TabPages.Add(pageAll); } if (building.FloorCount >= tabFloor.TabPages.Count) { for (int i = tabFloor.TabPages.Count; i <= building.FloorCount; i++) { int floor = i; MetroTabPage page = new MetroTabPage(); page.Text = string.Format("第{0}层", floor); page.Name = string.Format("pageFloor" + floor); page.Tag = floor; tabFloor.TabPages.Add(page); } } else if (building.FloorCount < tabFloor.TabPages.Count) { for (int i = tabFloor.TabPages.Count; i > building.FloorCount + 1; i--) { int floor = i - 1; tabFloor.TabPages.RemoveAt(floor); } } groupBox3.Text = building.Name; QueryUnallocateHouseRequest request = new QueryUnallocateHouseRequest(); request.token = this.Token; request.form = new HouseQueryForm { BuildingID = building.ID, }; var response = new SDKSync<QueryHousePagingResponse>(this).Execute(request, tvBuilding_AfterSelect_CallBack); }
/// <summary> /// This will check if MetroTabPage is hidden or not /// true if hidden otherwise false /// </summary> /// <param name="tabpage">The tabpage.</param> /// <returns><c>true</c> if [is tab hidden] [the specified tabpage]; otherwise, <c>false</c>.</returns> public bool IsTabHidden(MetroTabPage tabpage) { HiddenTabs result = hidTabs.Find( delegate(HiddenTabs bk) { return bk.tabpage == tabpage.Name; } ); return (result != null); }
public bool IsTabHidden(MetroTabPage tabpage) { HiddenTabs hiddenTab = this.hidTabs.Find((HiddenTabs bk) => bk.tabpage == tabpage.Name); return(hiddenTab != null); }
/// <summary> /// Determines whether [is close button click] [the specified page]. /// </summary> /// <param name="page">The page.</param> /// <param name="location">The location.</param> /// <returns><c>true</c> if [is close button click] [the specified page]; otherwise, <c>false</c>.</returns> private bool IsCloseButtonClick(MetroTabPage page, Point location) { var index = TabPages.IndexOf(page); var rectangle = GetTabRect(index); var closeRectagle = GetCloseButtonRectangle(rectangle); return IsInCloseButtonArea(closeRectagle, location); }
private void AddControlsToForm(MetroTabControl tabControl, MetroStyleManager styleManager, int activeCount, int newSet) { TabPage page = tabControl.TabPages[tabControl.TabPages.Count - 1]; var newPage = new MetroTabPage { BackColor = Color.Transparent, Text = string.Format("{0}-{1}", activeCount + 2, activeCount + 11), }; if (newSet == 10 && tabControl.TabPages.Count < 10) tabControl.TabPages.Add(newPage); newPage.Controls.Add(new MetroLabel { FontWeight = MetroFontWeight.Bold, Text = LanguageManager.Singleton.GetTranslation(ETranslations.AccountControlLoginName), Theme = styleManager.Theme, Style = styleManager.Style, Location = new Point(3, 10), BackColor = Color.Transparent, }); newPage.Controls.Add(new MetroLabel { FontWeight = MetroFontWeight.Bold, Text = LanguageManager.Singleton.GetTranslation(ETranslations.AccountControlStatus), Theme = styleManager.Theme, Style = styleManager.Style, Location = new Point(490, 10), BackColor = Color.Transparent, }); page.Controls.Add(LblAccountName); page.Controls.Add(BtnStart); page.Controls.Add(BtnKill); page.Controls.Add(BtnManage); page.Controls.Add(LblStatus); page.Controls.Add(CmbSettings); page.Controls.Add(BtnSettings); page.Controls.Add(BtnResetTime); }