forked from CjangCjengh/AutoCGAligner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClearColorWin.Designer.cs
120 lines (114 loc) · 5.12 KB
/
ClearColorWin.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
namespace AutoCGAligner
{
partial class ClearColorWin
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClearColorWin));
this.CGBox = new System.Windows.Forms.PictureBox();
this.degreeLabel = new System.Windows.Forms.Label();
this.degreeValue = new System.Windows.Forms.NumericUpDown();
this.confirmButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.CGBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.degreeValue)).BeginInit();
this.SuspendLayout();
//
// CGBox
//
this.CGBox.BackColor = System.Drawing.Color.White;
this.CGBox.Location = new System.Drawing.Point(12, 76);
this.CGBox.Name = "CGBox";
this.CGBox.Size = new System.Drawing.Size(640, 360);
this.CGBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.CGBox.TabIndex = 16;
this.CGBox.TabStop = false;
//
// degreeLabel
//
this.degreeLabel.AutoSize = true;
this.degreeLabel.Location = new System.Drawing.Point(75, 27);
this.degreeLabel.Name = "degreeLabel";
this.degreeLabel.Size = new System.Drawing.Size(82, 24);
this.degreeLabel.TabIndex = 0;
this.degreeLabel.Text = "去除强度";
//
// degreeValue
//
this.degreeValue.Location = new System.Drawing.Point(163, 24);
this.degreeValue.Maximum = new decimal(new int[] {
500,
0,
0,
0});
this.degreeValue.Name = "degreeValue";
this.degreeValue.Size = new System.Drawing.Size(99, 31);
this.degreeValue.TabIndex = 1;
this.degreeValue.Value = new decimal(new int[] {
50,
0,
0,
0});
this.degreeValue.ValueChanged += new System.EventHandler(this.ClearDegree_ValueChanged);
//
// confirmButton
//
this.confirmButton.Location = new System.Drawing.Point(456, 21);
this.confirmButton.Name = "confirmButton";
this.confirmButton.Size = new System.Drawing.Size(126, 36);
this.confirmButton.TabIndex = 2;
this.confirmButton.Text = "确定";
this.confirmButton.UseVisualStyleBackColor = true;
this.confirmButton.Click += new System.EventHandler(this.ConfirmButton_Click);
//
// ClearColorWin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(144F, 144F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(664, 448);
this.Controls.Add(this.confirmButton);
this.Controls.Add(this.degreeValue);
this.Controls.Add(this.degreeLabel);
this.Controls.Add(this.CGBox);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ClearColorWin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "去除背景";
this.Load += new System.EventHandler(this.ClearColorWin_Load);
((System.ComponentModel.ISupportInitialize)(this.CGBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.degreeValue)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox CGBox;
private System.Windows.Forms.Label degreeLabel;
private System.Windows.Forms.NumericUpDown degreeValue;
private System.Windows.Forms.Button confirmButton;
}
}