-
Notifications
You must be signed in to change notification settings - Fork 2
/
FormManagePropBag.Designer.cs
152 lines (146 loc) · 6.48 KB
/
FormManagePropBag.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
namespace SPFileZilla2013
{
partial class FormManagePropBag
{
/// <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(FormManagePropBag));
this.btnClose = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tbKey = new System.Windows.Forms.TextBox();
this.btnLoad = new System.Windows.Forms.Button();
this.tbValue = new System.Windows.Forms.TextBox();
this.btnSave = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.btnGetKeys = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.Location = new System.Drawing.Point(224, 338);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 21);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(28, 13);
this.label1.TabIndex = 4;
this.label1.Text = "Key:";
//
// tbKey
//
this.tbKey.Location = new System.Drawing.Point(46, 18);
this.tbKey.Name = "tbKey";
this.tbKey.Size = new System.Drawing.Size(172, 20);
this.tbKey.TabIndex = 5;
//
// btnLoad
//
this.btnLoad.Location = new System.Drawing.Point(224, 16);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(75, 23);
this.btnLoad.TabIndex = 6;
this.btnLoad.Text = "Load";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
//
// tbValue
//
this.tbValue.Location = new System.Drawing.Point(12, 77);
this.tbValue.Multiline = true;
this.tbValue.Name = "tbValue";
this.tbValue.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tbValue.Size = new System.Drawing.Size(368, 255);
this.tbValue.TabIndex = 7;
this.tbValue.WordWrap = false;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(305, 338);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 8;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 61);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(37, 13);
this.label2.TabIndex = 9;
this.label2.Text = "Value:";
//
// btnGetKeys
//
this.btnGetKeys.Location = new System.Drawing.Point(305, 16);
this.btnGetKeys.Name = "btnGetKeys";
this.btnGetKeys.Size = new System.Drawing.Size(75, 23);
this.btnGetKeys.TabIndex = 10;
this.btnGetKeys.Text = "Get Keys";
this.btnGetKeys.UseVisualStyleBackColor = true;
this.btnGetKeys.Click += new System.EventHandler(this.btnGetKeys_Click);
//
// FormManagePropBag
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(392, 373);
this.Controls.Add(this.btnGetKeys);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.tbValue);
this.Controls.Add(this.btnLoad);
this.Controls.Add(this.tbKey);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimizeBox = false;
this.Name = "FormManagePropBag";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "SPFileZilla - Manage Property Bag";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbKey;
private System.Windows.Forms.Button btnLoad;
private System.Windows.Forms.TextBox tbValue;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnGetKeys;
}
}