-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
122 lines (117 loc) · 4.64 KB
/
Copy pathMainForm.Designer.cs
File metadata and controls
122 lines (117 loc) · 4.64 KB
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
121
122
namespace webpfy
{
partial class MainForm
{
/// <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(MainForm));
progressBar1 = new ProgressBar();
convertByClipBoard = new Button();
forceFrontCheckBox = new CheckBox();
openOutputDir = new Button();
copyButton = new Button();
SuspendLayout();
//
// progressBar1
//
progressBar1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
progressBar1.Location = new Point(0, 0);
progressBar1.Name = "progressBar1";
progressBar1.Size = new Size(338, 46);
progressBar1.TabIndex = 0;
//
// convertByClipBoard
//
convertByClipBoard.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
convertByClipBoard.Location = new Point(0, 52);
convertByClipBoard.Name = "convertByClipBoard";
convertByClipBoard.Size = new Size(338, 46);
convertByClipBoard.TabIndex = 1;
convertByClipBoard.Text = "クリップボードから変換";
convertByClipBoard.UseVisualStyleBackColor = true;
convertByClipBoard.Click += convertByClipBoard_Click;
//
// forceFrontCheckBox
//
forceFrontCheckBox.AutoSize = true;
forceFrontCheckBox.Location = new Point(12, 254);
forceFrontCheckBox.Name = "forceFrontCheckBox";
forceFrontCheckBox.Size = new Size(118, 36);
forceFrontCheckBox.TabIndex = 2;
forceFrontCheckBox.Text = "最前面";
forceFrontCheckBox.UseVisualStyleBackColor = true;
forceFrontCheckBox.CheckedChanged += forceFrontCheckBox_CheckedChanged;
//
// openOutputDir
//
openOutputDir.Location = new Point(289, 241);
openOutputDir.Name = "openOutputDir";
openOutputDir.Size = new Size(41, 49);
openOutputDir.TabIndex = 4;
openOutputDir.Text = "📂";
openOutputDir.UseVisualStyleBackColor = true;
openOutputDir.Click += openOutputDir_Click;
//
// copyButton
//
copyButton.Enabled = false;
copyButton.Location = new Point(0, 296);
copyButton.Name = "copyButton";
copyButton.Size = new Size(338, 46);
copyButton.TabIndex = 5;
copyButton.Text = "コピー";
copyButton.UseVisualStyleBackColor = true;
copyButton.Click += copyButton_Click;
//
// MainForm
//
AllowDrop = true;
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(342, 343);
Controls.Add(copyButton);
Controls.Add(openOutputDir);
Controls.Add(forceFrontCheckBox);
Controls.Add(convertByClipBoard);
Controls.Add(progressBar1);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "MainForm";
Text = "webpfy";
Load += MainForm_Load;
DragDrop += MainForm_DragDrop;
DragEnter += MainForm_DragEnter;
ResumeLayout(false);
PerformLayout();
}
#endregion
private ProgressBar progressBar1;
private Button convertByClipBoard;
private CheckBox forceFrontCheckBox;
private Button openOutputDir;
private Button copyButton;
}
}