-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToolkitSelector.Designer.cs
102 lines (95 loc) · 4.57 KB
/
ToolkitSelector.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
namespace AppTools
{
partial class ToolkitSelector
{
/// <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(ToolkitSelector));
this.convertorButton = new System.Windows.Forms.Button();
this.flipDirPicsButton = new System.Windows.Forms.Button();
this.jsonViewerButton = new System.Windows.Forms.Button();
this.SentencesToImagesButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// convertorButton
//
this.convertorButton.Location = new System.Drawing.Point(12, 12);
this.convertorButton.Name = "convertorButton";
this.convertorButton.Size = new System.Drawing.Size(195, 107);
this.convertorButton.TabIndex = 0;
this.convertorButton.Text = "Image Convertor";
this.convertorButton.UseVisualStyleBackColor = true;
this.convertorButton.Click += new System.EventHandler(this.convertorButton_Click);
//
// flipDirPicsButton
//
this.flipDirPicsButton.Location = new System.Drawing.Point(213, 12);
this.flipDirPicsButton.Name = "flipDirPicsButton";
this.flipDirPicsButton.Size = new System.Drawing.Size(195, 107);
this.flipDirPicsButton.TabIndex = 1;
this.flipDirPicsButton.Text = "Image Flip";
this.flipDirPicsButton.UseVisualStyleBackColor = true;
this.flipDirPicsButton.Click += new System.EventHandler(this.flipDirPicsButton_Click);
//
// jsonViewerButton
//
this.jsonViewerButton.Location = new System.Drawing.Point(414, 12);
this.jsonViewerButton.Name = "jsonViewerButton";
this.jsonViewerButton.Size = new System.Drawing.Size(195, 107);
this.jsonViewerButton.TabIndex = 1;
this.jsonViewerButton.Text = "Json Viewer";
this.jsonViewerButton.UseVisualStyleBackColor = true;
this.jsonViewerButton.Click += new System.EventHandler(this.jsonViewerButton_Click);
//
// SentencesToImagesButton
//
this.SentencesToImagesButton.Location = new System.Drawing.Point(12, 125);
this.SentencesToImagesButton.Name = "SentencesToImagesButton";
this.SentencesToImagesButton.Size = new System.Drawing.Size(195, 107);
this.SentencesToImagesButton.TabIndex = 2;
this.SentencesToImagesButton.Text = "Sentences To Images";
this.SentencesToImagesButton.UseVisualStyleBackColor = true;
this.SentencesToImagesButton.Click += new System.EventHandler(this.SentencesToImagesButton_Click);
//
// ToolkitSelector
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(620, 244);
this.Controls.Add(this.SentencesToImagesButton);
this.Controls.Add(this.jsonViewerButton);
this.Controls.Add(this.flipDirPicsButton);
this.Controls.Add(this.convertorButton);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ToolkitSelector";
this.Text = "Toolkit Selector";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button convertorButton;
private System.Windows.Forms.Button flipDirPicsButton;
private System.Windows.Forms.Button jsonViewerButton;
private System.Windows.Forms.Button SentencesToImagesButton;
}
}