forked from jarrettv/ChapterGrabber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuickSaveDialog.Designer.cs
135 lines (128 loc) · 6.15 KB
/
QuickSaveDialog.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
namespace JarrettVance.ChapterTools
{
partial class QuickSaveDialog
{
/// <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(QuickSaveDialog));
this.txtFolder = new System.Windows.Forms.TextBox();
this.lblStatus = new System.Windows.Forms.Label();
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.btnOK = new System.Windows.Forms.Button();
this.btnDir = new System.Windows.Forms.Button();
this.flowLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// txtFolder
//
this.txtFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtFolder.Font = new System.Drawing.Font("Segoe UI", 9.5F);
this.txtFolder.Location = new System.Drawing.Point(10, 10);
this.txtFolder.Name = "txtFolder";
this.txtFolder.ReadOnly = true;
this.txtFolder.Size = new System.Drawing.Size(626, 24);
this.txtFolder.TabIndex = 2;
//
// lblStatus
//
this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblStatus.Font = new System.Drawing.Font("Segoe UI", 9.5F);
this.lblStatus.Location = new System.Drawing.Point(10, 40);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(664, 273);
this.lblStatus.TabIndex = 4;
this.lblStatus.Text = "Saving to \'\'";
//
// flowLayoutPanel2
//
this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.flowLayoutPanel2.Controls.Add(this.btnOK);
this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.flowLayoutPanel2.Location = new System.Drawing.Point(14, 322);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(661, 30);
this.flowLayoutPanel2.TabIndex = 13;
//
// btnOK
//
this.btnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnOK.Location = new System.Drawing.Point(581, 0);
this.btnOK.Margin = new System.Windows.Forms.Padding(0);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(80, 30);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "Done";
this.btnOK.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnOK.UseVisualStyleBackColor = true;
//
// btnDir
//
this.btnDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnDir.Image = ((System.Drawing.Image)(resources.GetObject("btnDir.Image")));
this.btnDir.Location = new System.Drawing.Point(641, 9);
this.btnDir.Name = "btnDir";
this.btnDir.Size = new System.Drawing.Size(34, 26);
this.btnDir.TabIndex = 3;
this.btnDir.UseVisualStyleBackColor = true;
this.btnDir.Click += new System.EventHandler(this.btnDir_Click);
//
// QuickSaveDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnOK;
this.ClientSize = new System.Drawing.Size(684, 361);
this.ControlBox = false;
this.Controls.Add(this.flowLayoutPanel2);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.btnDir);
this.Controls.Add(this.txtFolder);
this.Font = new System.Drawing.Font("Segoe UI", 9F);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "QuickSaveDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Quick Save";
this.flowLayoutPanel2.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtFolder;
private System.Windows.Forms.Button btnDir;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
private System.Windows.Forms.Button btnOK;
}
}