The settings page is now pretty :D

This commit is contained in:
2023-05-22 15:33:19 +02:00
parent af8db571f3
commit dd3dbcadf6
4 changed files with 134 additions and 44 deletions
+114 -40
View File
@@ -67,6 +67,7 @@
// //
this.label1.AutoSize = true; this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft YaHei UI", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Font = new System.Drawing.Font("Microsoft YaHei UI", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(260, 36); this.label1.Size = new System.Drawing.Size(260, 36);
@@ -77,7 +78,8 @@
// //
this.label2.AutoSize = true; this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(6, 27); this.label2.ForeColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(3, 17);
this.label2.Name = "label2"; this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(132, 23); this.label2.Size = new System.Drawing.Size(132, 23);
this.label2.TabIndex = 1; this.label2.TabIndex = 1;
@@ -86,82 +88,106 @@
// gpbxRaceSettings // gpbxRaceSettings
// //
this.gpbxRaceSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.gpbxRaceSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.gpbxRaceSettings.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
this.gpbxRaceSettings.Controls.Add(this.tbxGpUrl); this.gpbxRaceSettings.Controls.Add(this.tbxGpUrl);
this.gpbxRaceSettings.Controls.Add(this.label2); this.gpbxRaceSettings.Controls.Add(this.label2);
this.gpbxRaceSettings.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.gpbxRaceSettings.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.gpbxRaceSettings.Location = new System.Drawing.Point(715, 2); this.gpbxRaceSettings.ForeColor = System.Drawing.Color.White;
this.gpbxRaceSettings.Location = new System.Drawing.Point(725, 2);
this.gpbxRaceSettings.Name = "gpbxRaceSettings"; this.gpbxRaceSettings.Name = "gpbxRaceSettings";
this.gpbxRaceSettings.Size = new System.Drawing.Size(521, 70); this.gpbxRaceSettings.Padding = new System.Windows.Forms.Padding(0);
this.gpbxRaceSettings.Size = new System.Drawing.Size(521, 47);
this.gpbxRaceSettings.TabIndex = 2; this.gpbxRaceSettings.TabIndex = 2;
this.gpbxRaceSettings.TabStop = false; this.gpbxRaceSettings.TabStop = false;
this.gpbxRaceSettings.Text = "RaceSettings"; this.gpbxRaceSettings.Text = "RaceSettings";
this.gpbxRaceSettings.Paint += new System.Windows.Forms.PaintEventHandler(this.removeBorders);
// //
// tbxGpUrl // tbxGpUrl
// //
this.tbxGpUrl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.tbxGpUrl.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tbxGpUrl.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tbxGpUrl.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tbxGpUrl.Location = new System.Drawing.Point(144, 24); this.tbxGpUrl.ForeColor = System.Drawing.Color.White;
this.tbxGpUrl.Location = new System.Drawing.Point(141, 18);
this.tbxGpUrl.Name = "tbxGpUrl"; this.tbxGpUrl.Name = "tbxGpUrl";
this.tbxGpUrl.Size = new System.Drawing.Size(367, 29); this.tbxGpUrl.Size = new System.Drawing.Size(367, 22);
this.tbxGpUrl.TabIndex = 4; this.tbxGpUrl.TabIndex = 4;
this.tbxGpUrl.TextChanged += new System.EventHandler(this.tbxGpUrl_TextChanged); this.tbxGpUrl.TextChanged += new System.EventHandler(this.tbxGpUrl_TextChanged);
// //
// gpbxDriverList // gpbxDriverList
// //
this.gpbxDriverList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.gpbxDriverList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.gpbxDriverList.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
this.gpbxDriverList.Controls.Add(this.lsbDrivers); this.gpbxDriverList.Controls.Add(this.lsbDrivers);
this.gpbxDriverList.Controls.Add(this.btnRemoveDriver); this.gpbxDriverList.Controls.Add(this.btnRemoveDriver);
this.gpbxDriverList.Controls.Add(this.btnAddDriver); this.gpbxDriverList.Controls.Add(this.btnAddDriver);
this.gpbxDriverList.Controls.Add(this.tbxDriverName); this.gpbxDriverList.Controls.Add(this.tbxDriverName);
this.gpbxDriverList.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.gpbxDriverList.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.gpbxDriverList.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.gpbxDriverList.Location = new System.Drawing.Point(976, 55); this.gpbxDriverList.ForeColor = System.Drawing.Color.White;
this.gpbxDriverList.Location = new System.Drawing.Point(986, 55);
this.gpbxDriverList.Name = "gpbxDriverList"; this.gpbxDriverList.Name = "gpbxDriverList";
this.gpbxDriverList.Padding = new System.Windows.Forms.Padding(0);
this.gpbxDriverList.Size = new System.Drawing.Size(259, 269); this.gpbxDriverList.Size = new System.Drawing.Size(259, 269);
this.gpbxDriverList.TabIndex = 3; this.gpbxDriverList.TabIndex = 3;
this.gpbxDriverList.TabStop = false; this.gpbxDriverList.TabStop = false;
this.gpbxDriverList.Text = "DriverList"; this.gpbxDriverList.Text = "DriverList";
this.gpbxDriverList.Paint += new System.Windows.Forms.PaintEventHandler(this.removeBorders);
// //
// lsbDrivers // lsbDrivers
// //
this.lsbDrivers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.lsbDrivers.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lsbDrivers.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.lsbDrivers.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.lsbDrivers.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(252)))), ((int)(((byte)(252)))));
this.lsbDrivers.FormattingEnabled = true; this.lsbDrivers.FormattingEnabled = true;
this.lsbDrivers.ItemHeight = 23; this.lsbDrivers.ItemHeight = 23;
this.lsbDrivers.Location = new System.Drawing.Point(10, 23); this.lsbDrivers.Location = new System.Drawing.Point(10, 23);
this.lsbDrivers.Name = "lsbDrivers"; this.lsbDrivers.Name = "lsbDrivers";
this.lsbDrivers.Size = new System.Drawing.Size(243, 142); this.lsbDrivers.Size = new System.Drawing.Size(243, 138);
this.lsbDrivers.TabIndex = 10; this.lsbDrivers.TabIndex = 10;
// //
// btnRemoveDriver // btnRemoveDriver
// //
this.btnRemoveDriver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnRemoveDriver.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnRemoveDriver.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRemoveDriver.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnRemoveDriver.Location = new System.Drawing.Point(132, 175); this.btnRemoveDriver.ForeColor = System.Drawing.Color.White;
this.btnRemoveDriver.Location = new System.Drawing.Point(132, 167);
this.btnRemoveDriver.Name = "btnRemoveDriver"; this.btnRemoveDriver.Name = "btnRemoveDriver";
this.btnRemoveDriver.Size = new System.Drawing.Size(121, 44); this.btnRemoveDriver.Size = new System.Drawing.Size(121, 62);
this.btnRemoveDriver.TabIndex = 9; this.btnRemoveDriver.TabIndex = 9;
this.btnRemoveDriver.Text = "Remove"; this.btnRemoveDriver.Text = "Remove";
this.btnRemoveDriver.UseVisualStyleBackColor = true; this.btnRemoveDriver.UseVisualStyleBackColor = false;
this.btnRemoveDriver.Click += new System.EventHandler(this.btnRemoveDriver_Click); this.btnRemoveDriver.Click += new System.EventHandler(this.btnRemoveDriver_Click);
// //
// btnAddDriver // btnAddDriver
// //
this.btnAddDriver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnAddDriver.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnAddDriver.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAddDriver.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAddDriver.Location = new System.Drawing.Point(10, 175); this.btnAddDriver.ForeColor = System.Drawing.Color.White;
this.btnAddDriver.Location = new System.Drawing.Point(10, 167);
this.btnAddDriver.Name = "btnAddDriver"; this.btnAddDriver.Name = "btnAddDriver";
this.btnAddDriver.Size = new System.Drawing.Size(116, 44); this.btnAddDriver.Size = new System.Drawing.Size(116, 62);
this.btnAddDriver.TabIndex = 8; this.btnAddDriver.TabIndex = 8;
this.btnAddDriver.Text = "Add"; this.btnAddDriver.Text = "Add";
this.btnAddDriver.UseVisualStyleBackColor = true; this.btnAddDriver.UseVisualStyleBackColor = false;
this.btnAddDriver.Click += new System.EventHandler(this.btnAddDriver_Click); this.btnAddDriver.Click += new System.EventHandler(this.btnAddDriver_Click);
// //
// tbxDriverName // tbxDriverName
// //
this.tbxDriverName.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tbxDriverName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.tbxDriverName.Location = new System.Drawing.Point(10, 225); this.tbxDriverName.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tbxDriverName.Font = new System.Drawing.Font("Microsoft YaHei UI", 11F);
this.tbxDriverName.Location = new System.Drawing.Point(10, 235);
this.tbxDriverName.Name = "tbxDriverName"; this.tbxDriverName.Name = "tbxDriverName";
this.tbxDriverName.Size = new System.Drawing.Size(243, 29); this.tbxDriverName.Size = new System.Drawing.Size(243, 24);
this.tbxDriverName.TabIndex = 7; this.tbxDriverName.TabIndex = 7;
// //
// gpbxPreview // gpbxPreview
// //
this.gpbxPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
this.gpbxPreview.Controls.Add(this.lblWindowsRemaining); this.gpbxPreview.Controls.Add(this.lblWindowsRemaining);
this.gpbxPreview.Controls.Add(this.btnResetDriver); this.gpbxPreview.Controls.Add(this.btnResetDriver);
this.gpbxPreview.Controls.Add(this.btnRefresh); this.gpbxPreview.Controls.Add(this.btnRefresh);
@@ -170,18 +196,24 @@
this.gpbxPreview.Controls.Add(this.btnCreateWindow); this.gpbxPreview.Controls.Add(this.btnCreateWindow);
this.gpbxPreview.Controls.Add(this.pbxPreview); this.gpbxPreview.Controls.Add(this.pbxPreview);
this.gpbxPreview.Controls.Add(this.btnCreatZone); this.gpbxPreview.Controls.Add(this.btnCreatZone);
this.gpbxPreview.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.gpbxPreview.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.gpbxPreview.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.gpbxPreview.Location = new System.Drawing.Point(2, 55); this.gpbxPreview.ForeColor = System.Drawing.Color.White;
this.gpbxPreview.Location = new System.Drawing.Point(8, 55);
this.gpbxPreview.Name = "gpbxPreview"; this.gpbxPreview.Name = "gpbxPreview";
this.gpbxPreview.Padding = new System.Windows.Forms.Padding(0);
this.gpbxPreview.Size = new System.Drawing.Size(968, 608); this.gpbxPreview.Size = new System.Drawing.Size(968, 608);
this.gpbxPreview.TabIndex = 4; this.gpbxPreview.TabIndex = 4;
this.gpbxPreview.TabStop = false; this.gpbxPreview.TabStop = false;
this.gpbxPreview.Text = "Preview"; this.gpbxPreview.Text = "Preview";
this.gpbxPreview.Paint += new System.Windows.Forms.PaintEventHandler(this.removeBorders);
// //
// lblWindowsRemaining // lblWindowsRemaining
// //
this.lblWindowsRemaining.AutoSize = true; this.lblWindowsRemaining.AutoSize = true;
this.lblWindowsRemaining.Location = new System.Drawing.Point(218, 85); this.lblWindowsRemaining.BackColor = System.Drawing.Color.Transparent;
this.lblWindowsRemaining.ForeColor = System.Drawing.Color.White;
this.lblWindowsRemaining.Location = new System.Drawing.Point(215, 82);
this.lblWindowsRemaining.Name = "lblWindowsRemaining"; this.lblWindowsRemaining.Name = "lblWindowsRemaining";
this.lblWindowsRemaining.Size = new System.Drawing.Size(183, 23); this.lblWindowsRemaining.Size = new System.Drawing.Size(183, 23);
this.lblWindowsRemaining.TabIndex = 6; this.lblWindowsRemaining.TabIndex = 6;
@@ -190,29 +222,36 @@
// btnResetDriver // btnResetDriver
// //
this.btnResetDriver.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnResetDriver.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnResetDriver.Location = new System.Drawing.Point(745, 23); this.btnResetDriver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnResetDriver.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnResetDriver.ForeColor = System.Drawing.Color.White;
this.btnResetDriver.Location = new System.Drawing.Point(748, 20);
this.btnResetDriver.Name = "btnResetDriver"; this.btnResetDriver.Name = "btnResetDriver";
this.btnResetDriver.Size = new System.Drawing.Size(211, 33); this.btnResetDriver.Size = new System.Drawing.Size(211, 33);
this.btnResetDriver.TabIndex = 2; this.btnResetDriver.TabIndex = 2;
this.btnResetDriver.Text = "Reset the emulator"; this.btnResetDriver.Text = "Reset the emulator";
this.btnResetDriver.UseVisualStyleBackColor = true; this.btnResetDriver.UseVisualStyleBackColor = false;
this.btnResetDriver.Click += new System.EventHandler(this.btnResetDriver_Click); this.btnResetDriver.Click += new System.EventHandler(this.btnResetDriver_Click);
// //
// btnRefresh // btnRefresh
// //
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnRefresh.Location = new System.Drawing.Point(546, 23); this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnRefresh.ForeColor = System.Drawing.Color.White;
this.btnRefresh.Location = new System.Drawing.Point(549, 20);
this.btnRefresh.Name = "btnRefresh"; this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(193, 33); this.btnRefresh.Size = new System.Drawing.Size(193, 33);
this.btnRefresh.TabIndex = 1; this.btnRefresh.TabIndex = 1;
this.btnRefresh.Text = "Get a newer image"; this.btnRefresh.Text = "Get a newer image";
this.btnRefresh.UseVisualStyleBackColor = true; this.btnRefresh.UseVisualStyleBackColor = false;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
// //
// lblWindowPointsRemaining // lblWindowPointsRemaining
// //
this.lblWindowPointsRemaining.AutoSize = true; this.lblWindowPointsRemaining.AutoSize = true;
this.lblWindowPointsRemaining.Location = new System.Drawing.Point(218, 62); this.lblWindowPointsRemaining.ForeColor = System.Drawing.Color.White;
this.lblWindowPointsRemaining.Location = new System.Drawing.Point(215, 59);
this.lblWindowPointsRemaining.Name = "lblWindowPointsRemaining"; this.lblWindowPointsRemaining.Name = "lblWindowPointsRemaining";
this.lblWindowPointsRemaining.Size = new System.Drawing.Size(163, 23); this.lblWindowPointsRemaining.Size = new System.Drawing.Size(163, 23);
this.lblWindowPointsRemaining.TabIndex = 4; this.lblWindowPointsRemaining.TabIndex = 4;
@@ -221,7 +260,8 @@
// lblZonePointsRemaning // lblZonePointsRemaning
// //
this.lblZonePointsRemaning.AutoSize = true; this.lblZonePointsRemaning.AutoSize = true;
this.lblZonePointsRemaning.Location = new System.Drawing.Point(22, 62); this.lblZonePointsRemaning.ForeColor = System.Drawing.Color.White;
this.lblZonePointsRemaning.Location = new System.Drawing.Point(19, 59);
this.lblZonePointsRemaning.Name = "lblZonePointsRemaning"; this.lblZonePointsRemaning.Name = "lblZonePointsRemaning";
this.lblZonePointsRemaning.Size = new System.Drawing.Size(163, 23); this.lblZonePointsRemaning.Size = new System.Drawing.Size(163, 23);
this.lblZonePointsRemaning.TabIndex = 5; this.lblZonePointsRemaning.TabIndex = 5;
@@ -229,16 +269,20 @@
// //
// btnCreateWindow // btnCreateWindow
// //
this.btnCreateWindow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnCreateWindow.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCreateWindow.ForeColor = System.Drawing.Color.White;
this.btnCreateWindow.Location = new System.Drawing.Point(213, 23); this.btnCreateWindow.Location = new System.Drawing.Point(213, 23);
this.btnCreateWindow.Name = "btnCreateWindow"; this.btnCreateWindow.Name = "btnCreateWindow";
this.btnCreateWindow.Size = new System.Drawing.Size(201, 33); this.btnCreateWindow.Size = new System.Drawing.Size(201, 33);
this.btnCreateWindow.TabIndex = 2; this.btnCreateWindow.TabIndex = 2;
this.btnCreateWindow.Text = "Create the windows"; this.btnCreateWindow.Text = "Create the windows";
this.btnCreateWindow.UseVisualStyleBackColor = true; this.btnCreateWindow.UseVisualStyleBackColor = false;
this.btnCreateWindow.Click += new System.EventHandler(this.btnCreateWindow_Click); this.btnCreateWindow.Click += new System.EventHandler(this.btnCreateWindow_Click);
// //
// pbxPreview // pbxPreview
// //
this.pbxPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.pbxPreview.Location = new System.Drawing.Point(10, 62); this.pbxPreview.Location = new System.Drawing.Point(10, 62);
this.pbxPreview.Name = "pbxPreview"; this.pbxPreview.Name = "pbxPreview";
this.pbxPreview.Size = new System.Drawing.Size(950, 540); this.pbxPreview.Size = new System.Drawing.Size(950, 540);
@@ -250,31 +294,40 @@
// //
// btnCreatZone // btnCreatZone
// //
this.btnCreatZone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnCreatZone.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCreatZone.ForeColor = System.Drawing.Color.White;
this.btnCreatZone.Location = new System.Drawing.Point(6, 23); this.btnCreatZone.Location = new System.Drawing.Point(6, 23);
this.btnCreatZone.Name = "btnCreatZone"; this.btnCreatZone.Name = "btnCreatZone";
this.btnCreatZone.Size = new System.Drawing.Size(201, 33); this.btnCreatZone.Size = new System.Drawing.Size(201, 33);
this.btnCreatZone.TabIndex = 1; this.btnCreatZone.TabIndex = 1;
this.btnCreatZone.Text = "Create the main zone"; this.btnCreatZone.Text = "Create the main zone";
this.btnCreatZone.UseVisualStyleBackColor = true; this.btnCreatZone.UseVisualStyleBackColor = false;
this.btnCreatZone.Click += new System.EventHandler(this.btnCreatZone_Click); this.btnCreatZone.Click += new System.EventHandler(this.btnCreatZone_Click);
// //
// gpbxWindowPreview // gpbxWindowPreview
// //
this.gpbxWindowPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.gpbxWindowPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.gpbxWindowPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
this.gpbxWindowPreview.Controls.Add(this.pbxWindowPreview); this.gpbxWindowPreview.Controls.Add(this.pbxWindowPreview);
this.gpbxWindowPreview.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.gpbxWindowPreview.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.gpbxWindowPreview.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.gpbxWindowPreview.ForeColor = System.Drawing.Color.White;
this.gpbxWindowPreview.Location = new System.Drawing.Point(8, 669); this.gpbxWindowPreview.Location = new System.Drawing.Point(8, 669);
this.gpbxWindowPreview.Name = "gpbxWindowPreview"; this.gpbxWindowPreview.Name = "gpbxWindowPreview";
this.gpbxWindowPreview.Size = new System.Drawing.Size(1227, 88); this.gpbxWindowPreview.Padding = new System.Windows.Forms.Padding(0);
this.gpbxWindowPreview.Size = new System.Drawing.Size(1237, 88);
this.gpbxWindowPreview.TabIndex = 5; this.gpbxWindowPreview.TabIndex = 5;
this.gpbxWindowPreview.TabStop = false; this.gpbxWindowPreview.TabStop = false;
this.gpbxWindowPreview.Text = "DriverZonePreview"; this.gpbxWindowPreview.Text = "DriverZonePreview";
this.gpbxWindowPreview.Paint += new System.Windows.Forms.PaintEventHandler(this.removeBorders);
// //
// pbxWindowPreview // pbxWindowPreview
// //
this.pbxWindowPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.pbxWindowPreview.Location = new System.Drawing.Point(6, 30); this.pbxWindowPreview.Location = new System.Drawing.Point(6, 30);
this.pbxWindowPreview.Name = "pbxWindowPreview"; this.pbxWindowPreview.Name = "pbxWindowPreview";
this.pbxWindowPreview.Size = new System.Drawing.Size(1212, 50); this.pbxWindowPreview.Size = new System.Drawing.Size(1225, 50);
this.pbxWindowPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pbxWindowPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbxWindowPreview.TabIndex = 0; this.pbxWindowPreview.TabIndex = 0;
this.pbxWindowPreview.TabStop = false; this.pbxWindowPreview.TabStop = false;
@@ -283,74 +336,95 @@
// //
// btnLoadPreset // btnLoadPreset
// //
this.btnLoadPreset.Location = new System.Drawing.Point(10, 194); this.btnLoadPreset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnLoadPreset.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnLoadPreset.ForeColor = System.Drawing.Color.White;
this.btnLoadPreset.Location = new System.Drawing.Point(10, 213);
this.btnLoadPreset.Name = "btnLoadPreset"; this.btnLoadPreset.Name = "btnLoadPreset";
this.btnLoadPreset.Size = new System.Drawing.Size(243, 40); this.btnLoadPreset.Size = new System.Drawing.Size(243, 40);
this.btnLoadPreset.TabIndex = 10; this.btnLoadPreset.TabIndex = 10;
this.btnLoadPreset.Text = "Load the preset"; this.btnLoadPreset.Text = "Load the preset";
this.btnLoadPreset.UseVisualStyleBackColor = true; this.btnLoadPreset.UseVisualStyleBackColor = false;
this.btnLoadPreset.Click += new System.EventHandler(this.btnLoadPreset_Click); this.btnLoadPreset.Click += new System.EventHandler(this.btnLoadPreset_Click);
// //
// lsbPresets // lsbPresets
// //
this.lsbPresets.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.lsbPresets.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lsbPresets.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.lsbPresets.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.lsbPresets.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(252)))), ((int)(((byte)(252)))));
this.lsbPresets.FormattingEnabled = true; this.lsbPresets.FormattingEnabled = true;
this.lsbPresets.ItemHeight = 23; this.lsbPresets.ItemHeight = 23;
this.lsbPresets.Location = new System.Drawing.Point(10, 23); this.lsbPresets.Location = new System.Drawing.Point(10, 23);
this.lsbPresets.Name = "lsbPresets"; this.lsbPresets.Name = "lsbPresets";
this.lsbPresets.Size = new System.Drawing.Size(243, 119); this.lsbPresets.Size = new System.Drawing.Size(243, 138);
this.lsbPresets.TabIndex = 8; this.lsbPresets.TabIndex = 8;
this.lsbPresets.SelectedIndexChanged += new System.EventHandler(this.lsbPresets_SelectedIndexChanged); this.lsbPresets.SelectedIndexChanged += new System.EventHandler(this.lsbPresets_SelectedIndexChanged);
// //
// tbxPresetName // tbxPresetName
// //
this.tbxPresetName.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tbxPresetName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.tbxPresetName.Location = new System.Drawing.Point(10, 286); this.tbxPresetName.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tbxPresetName.Font = new System.Drawing.Font("Microsoft YaHei UI", 11F);
this.tbxPresetName.ForeColor = System.Drawing.Color.White;
this.tbxPresetName.Location = new System.Drawing.Point(10, 303);
this.tbxPresetName.Name = "tbxPresetName"; this.tbxPresetName.Name = "tbxPresetName";
this.tbxPresetName.Size = new System.Drawing.Size(243, 29); this.tbxPresetName.Size = new System.Drawing.Size(243, 24);
this.tbxPresetName.TabIndex = 7; this.tbxPresetName.TabIndex = 7;
// //
// btnSavePreset // btnSavePreset
// //
this.btnSavePreset.Location = new System.Drawing.Point(10, 240); this.btnSavePreset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnSavePreset.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnSavePreset.ForeColor = System.Drawing.Color.White;
this.btnSavePreset.Location = new System.Drawing.Point(10, 259);
this.btnSavePreset.Name = "btnSavePreset"; this.btnSavePreset.Name = "btnSavePreset";
this.btnSavePreset.Size = new System.Drawing.Size(243, 40); this.btnSavePreset.Size = new System.Drawing.Size(243, 40);
this.btnSavePreset.TabIndex = 7; this.btnSavePreset.TabIndex = 7;
this.btnSavePreset.Text = "Save current preset"; this.btnSavePreset.Text = "Save current preset";
this.btnSavePreset.UseVisualStyleBackColor = true; this.btnSavePreset.UseVisualStyleBackColor = false;
this.btnSavePreset.Click += new System.EventHandler(this.btnSavePreset_Click); this.btnSavePreset.Click += new System.EventHandler(this.btnSavePreset_Click);
// //
// gpbxPresets // gpbxPresets
// //
this.gpbxPresets.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.gpbxPresets.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.gpbxPresets.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
this.gpbxPresets.Controls.Add(this.btnSavePreset); this.gpbxPresets.Controls.Add(this.btnSavePreset);
this.gpbxPresets.Controls.Add(this.btnDeletePreset); this.gpbxPresets.Controls.Add(this.btnDeletePreset);
this.gpbxPresets.Controls.Add(this.tbxPresetName); this.gpbxPresets.Controls.Add(this.tbxPresetName);
this.gpbxPresets.Controls.Add(this.btnLoadPreset); this.gpbxPresets.Controls.Add(this.btnLoadPreset);
this.gpbxPresets.Controls.Add(this.lsbPresets); this.gpbxPresets.Controls.Add(this.lsbPresets);
this.gpbxPresets.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.gpbxPresets.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F); this.gpbxPresets.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.gpbxPresets.Location = new System.Drawing.Point(976, 330); this.gpbxPresets.ForeColor = System.Drawing.Color.White;
this.gpbxPresets.Location = new System.Drawing.Point(986, 330);
this.gpbxPresets.Name = "gpbxPresets"; this.gpbxPresets.Name = "gpbxPresets";
this.gpbxPresets.Padding = new System.Windows.Forms.Padding(0);
this.gpbxPresets.Size = new System.Drawing.Size(259, 333); this.gpbxPresets.Size = new System.Drawing.Size(259, 333);
this.gpbxPresets.TabIndex = 6; this.gpbxPresets.TabIndex = 6;
this.gpbxPresets.TabStop = false; this.gpbxPresets.TabStop = false;
this.gpbxPresets.Text = "Presets"; this.gpbxPresets.Text = "Presets";
this.gpbxPresets.Paint += new System.Windows.Forms.PaintEventHandler(this.removeBorders);
// //
// btnDeletePreset // btnDeletePreset
// //
this.btnDeletePreset.Location = new System.Drawing.Point(10, 148); this.btnDeletePreset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.btnDeletePreset.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnDeletePreset.ForeColor = System.Drawing.Color.White;
this.btnDeletePreset.Location = new System.Drawing.Point(10, 167);
this.btnDeletePreset.Name = "btnDeletePreset"; this.btnDeletePreset.Name = "btnDeletePreset";
this.btnDeletePreset.Size = new System.Drawing.Size(243, 40); this.btnDeletePreset.Size = new System.Drawing.Size(243, 40);
this.btnDeletePreset.TabIndex = 11; this.btnDeletePreset.TabIndex = 11;
this.btnDeletePreset.Text = "Delete the preset"; this.btnDeletePreset.Text = "Delete the preset";
this.btnDeletePreset.UseVisualStyleBackColor = true; this.btnDeletePreset.UseVisualStyleBackColor = false;
this.btnDeletePreset.Click += new System.EventHandler(this.btnDeletePreset_Click); this.btnDeletePreset.Click += new System.EventHandler(this.btnDeletePreset_Click);
// //
// Settings // Settings
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1244, 760); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.ClientSize = new System.Drawing.Size(1254, 760);
this.Controls.Add(this.gpbxPresets); this.Controls.Add(this.gpbxPresets);
this.Controls.Add(this.gpbxWindowPreview); this.Controls.Add(this.gpbxWindowPreview);
this.Controls.Add(this.gpbxPreview); this.Controls.Add(this.gpbxPreview);
+17
View File
@@ -435,5 +435,22 @@ namespace Test_Merge
} }
} }
} }
private void removeBorders(object sender,PaintEventArgs e)
{
GroupBox gpbx = (GroupBox)sender;
using (Pen pen = new Pen(gpbx.BackColor,50))
{
e.Graphics.DrawRectangle(pen, 0, 0, gpbx.Width - 1, gpbx.Height - 1);
e.Graphics.DrawRectangle(pen, 0, 0, gpbx.Width - 1, gpbx.Height - 1);
}
using (var brush = new SolidBrush(gpbx.ForeColor))
{
var textPosition = new Point(5, 0); // Adjust the X and Y values as needed
e.Graphics.DrawString(gpbx.Text, gpbx.Font, brush, textPosition);
}
}
} }
} }
-1
View File
@@ -19,7 +19,6 @@ namespace Test_Merge
{ {
public class Window public class Window
{ {
public const string STRING_DEBUG_FOLDER = "./GetString"; public const string STRING_DEBUG_FOLDER = "./GetString";
public const string LAPTIME_DEBUG_FOLDER = "./LapTime"; public const string LAPTIME_DEBUG_FOLDER = "./LapTime";
public const string GAPTOLEADER_DEBUG_FOLDER = "./Gap"; public const string GAPTOLEADER_DEBUG_FOLDER = "./Gap";
+3 -3
View File
@@ -136,16 +136,16 @@ namespace Test_Merge
//If its the main zone we need to visualize the Zone bounds displayed //If its the main zone we need to visualize the Zone bounds displayed
if (Zones.Count > 0) if (Zones.Count > 0)
g.DrawRectangle(new Pen(Brushes.Violet, 5), Bounds); g.DrawRectangle(new Pen(new SolidBrush(Color.FromArgb(249,194,46)), 5), Bounds);
foreach (Zone z in Zones) foreach (Zone z in Zones)
{ {
Rectangle newBounds = new Rectangle(z.Bounds.X, z.Bounds.Y + Bounds.Y, z.Bounds.Width, z.Bounds.Height); Rectangle newBounds = new Rectangle(z.Bounds.X, z.Bounds.Y + Bounds.Y, z.Bounds.Width, z.Bounds.Height);
g.DrawRectangle(Pens.Red, newBounds); g.DrawRectangle(new Pen(new SolidBrush(Color.FromArgb(249, 194, 46)), 5), newBounds);
} }
foreach (Window w in Windows) foreach (Window w in Windows)
{ {
g.DrawRectangle(Pens.Blue, w.Bounds); g.DrawRectangle(new Pen(new SolidBrush(Color.FromArgb(252, 252, 252)), 5), w.Bounds);
} }
return img; return img;
} }