Improved the old way of manually selecting windows, Added all the windows types and implemented them, You can now export to a bad json file

This commit is contained in:
2023-04-03 12:38:47 +02:00
parent 5ec9656b03
commit 5ca6d61a69
16 changed files with 369 additions and 13 deletions
+19 -6
View File
@@ -36,6 +36,7 @@
this.btnDeleteWindow = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.pbxWindow = new System.Windows.Forms.PictureBox();
this.btnExport = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pbxInput)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbxWindow)).BeginInit();
this.SuspendLayout();
@@ -64,12 +65,12 @@
//
this.panel1.Location = new System.Drawing.Point(984, 118);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(268, 154);
this.panel1.Size = new System.Drawing.Size(268, 100);
this.panel1.TabIndex = 4;
//
// btnCreateWindow
//
this.btnCreateWindow.Location = new System.Drawing.Point(978, 292);
this.btnCreateWindow.Location = new System.Drawing.Point(978, 224);
this.btnCreateWindow.Name = "btnCreateWindow";
this.btnCreateWindow.Size = new System.Drawing.Size(280, 47);
this.btnCreateWindow.TabIndex = 5;
@@ -89,7 +90,7 @@
//
// btnDeleteWindow
//
this.btnDeleteWindow.Location = new System.Drawing.Point(978, 345);
this.btnDeleteWindow.Location = new System.Drawing.Point(978, 277);
this.btnDeleteWindow.Name = "btnDeleteWindow";
this.btnDeleteWindow.Size = new System.Drawing.Size(280, 47);
this.btnDeleteWindow.TabIndex = 7;
@@ -98,7 +99,7 @@
//
// panel2
//
this.panel2.Location = new System.Drawing.Point(984, 398);
this.panel2.Location = new System.Drawing.Point(984, 330);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(268, 154);
this.panel2.TabIndex = 5;
@@ -107,17 +108,28 @@
//
this.pbxWindow.Location = new System.Drawing.Point(12, 558);
this.pbxWindow.Name = "pbxWindow";
this.pbxWindow.Size = new System.Drawing.Size(960, 42);
this.pbxWindow.Size = new System.Drawing.Size(1240, 59);
this.pbxWindow.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbxWindow.TabIndex = 8;
this.pbxWindow.TabStop = false;
this.pbxWindow.Click += new System.EventHandler(this.pbxWindow_Click);
//
// btnExport
//
this.btnExport.Location = new System.Drawing.Point(978, 490);
this.btnExport.Name = "btnExport";
this.btnExport.Size = new System.Drawing.Size(280, 62);
this.btnExport.TabIndex = 9;
this.btnExport.Text = "Export";
this.btnExport.UseVisualStyleBackColor = true;
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1264, 612);
this.ClientSize = new System.Drawing.Size(1264, 623);
this.Controls.Add(this.btnExport);
this.Controls.Add(this.pbxWindow);
this.Controls.Add(this.panel2);
this.Controls.Add(this.btnDeleteWindow);
@@ -144,6 +156,7 @@
private System.Windows.Forms.Button btnDeleteWindow;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.PictureBox pbxWindow;
private System.Windows.Forms.Button btnExport;
}
}