-
Notifications
You must be signed in to change notification settings - Fork 6
/
SelectIcon.Designer.cs
97 lines (90 loc) · 4.16 KB
/
SelectIcon.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
namespace KMZViewer
{
partial class SelectIcon
{
/// <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()
{
this.secondary = new System.Windows.Forms.PictureBox();
this.primary = new System.Windows.Forms.PictureBox();
this.button1 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.secondary)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.primary)).BeginInit();
this.SuspendLayout();
//
// secondary
//
this.secondary.Cursor = System.Windows.Forms.Cursors.Hand;
this.secondary.Location = new System.Drawing.Point(12, 169);
this.secondary.Name = "secondary";
this.secondary.Size = new System.Drawing.Size(384, 144);
this.secondary.TabIndex = 1;
this.secondary.TabStop = false;
this.secondary.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.secondary_MouseDoubleClick);
this.secondary.MouseClick += new System.Windows.Forms.MouseEventHandler(this.secondary_MouseClick);
//
// primary
//
this.primary.Cursor = System.Windows.Forms.Cursors.Hand;
this.primary.Location = new System.Drawing.Point(12, 12);
this.primary.Name = "primary";
this.primary.Size = new System.Drawing.Size(384, 144);
this.primary.TabIndex = 0;
this.primary.TabStop = false;
this.primary.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.primary_MouseDoubleClick);
this.primary.MouseClick += new System.Windows.Forms.MouseEventHandler(this.primary_MouseClick);
//
// button1
//
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button1.Location = new System.Drawing.Point(167, 327);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
//
// SelectIcon
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(407, 363);
this.Controls.Add(this.button1);
this.Controls.Add(this.secondary);
this.Controls.Add(this.primary);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SelectIcon";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Âûáåðèòå èêîíêó";
((System.ComponentModel.ISupportInitialize)(this.secondary)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.primary)).EndInit();
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.PictureBox primary;
public System.Windows.Forms.PictureBox secondary;
private System.Windows.Forms.Button button1;
}
}