-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPatternHelpDialog.Designer.cs
More file actions
126 lines (120 loc) · 5.71 KB
/
PatternHelpDialog.Designer.cs
File metadata and controls
126 lines (120 loc) · 5.71 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
123
124
125
126
namespace cacheCopy
{
partial class PatternHelpDialog
{
/// <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(PatternHelpDialog));
this.txtHelpDescription = new System.Windows.Forms.RichTextBox();
this.btnClose = new System.Windows.Forms.Button();
this.TemplateTxtExplanation = new System.Windows.Forms.TextBox();
this.TemplateTxtPattern = new System.Windows.Forms.TextBox();
this.TemplateBtnCopyPattern = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// txtHelpDescription
//
this.txtHelpDescription.BackColor = System.Drawing.SystemColors.Window;
this.txtHelpDescription.Location = new System.Drawing.Point(1, 3);
this.txtHelpDescription.Name = "txtHelpDescription";
this.txtHelpDescription.ReadOnly = true;
this.txtHelpDescription.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.txtHelpDescription.Size = new System.Drawing.Size(378, 105);
this.txtHelpDescription.TabIndex = 0;
this.txtHelpDescription.Text = "";
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(301, 419);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 1;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// TemplateTxtExplanation
//
this.TemplateTxtExplanation.Location = new System.Drawing.Point(110, 6);
this.TemplateTxtExplanation.Name = "TemplateTxtExplanation";
this.TemplateTxtExplanation.ReadOnly = true;
this.TemplateTxtExplanation.Size = new System.Drawing.Size(245, 20);
this.TemplateTxtExplanation.TabIndex = 2;
//
// TemplateTxtPattern
//
this.TemplateTxtPattern.Location = new System.Drawing.Point(51, 6);
this.TemplateTxtPattern.Name = "TemplateTxtPattern";
this.TemplateTxtPattern.ReadOnly = true;
this.TemplateTxtPattern.Size = new System.Drawing.Size(53, 20);
this.TemplateTxtPattern.TabIndex = 1;
//
// TemplateBtnCopyPattern
//
this.TemplateBtnCopyPattern.Location = new System.Drawing.Point(3, 3);
this.TemplateBtnCopyPattern.Name = "TemplateBtnCopyPattern";
this.TemplateBtnCopyPattern.Size = new System.Drawing.Size(42, 23);
this.TemplateBtnCopyPattern.TabIndex = 0;
this.TemplateBtnCopyPattern.Text = "Insert";
this.TemplateBtnCopyPattern.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.AutoScroll = true;
this.panel1.Controls.Add(this.TemplateBtnCopyPattern);
this.panel1.Controls.Add(this.TemplateTxtExplanation);
this.panel1.Controls.Add(this.TemplateTxtPattern);
this.panel1.Location = new System.Drawing.Point(1, 114);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(378, 299);
this.panel1.TabIndex = 3;
//
// PatternHelpDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(380, 445);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.txtHelpDescription);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.Name = "PatternHelpDialog";
this.Text = "File Naming Pattern Help";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.RichTextBox txtHelpDescription;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.TextBox TemplateTxtExplanation;
private System.Windows.Forms.TextBox TemplateTxtPattern;
private System.Windows.Forms.Button TemplateBtnCopyPattern;
private System.Windows.Forms.Panel panel1;
}
}