-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHistoryForm.Designer.cs
247 lines (240 loc) · 13.7 KB
/
HistoryForm.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
namespace EditClipboardContents;
partial class HistoryForm
{
/// <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()
{
this.buttonRefreshHistory = new System.Windows.Forms.Button();
this.dataGridViewHistory = new System.Windows.Forms.DataGridView();
this.buttonDeleteHistoryItem = new System.Windows.Forms.Button();
this.labelHeaderAvailableFormats = new System.Windows.Forms.Label();
this.buttonSetActiveHistoryItem = new System.Windows.Forms.Button();
this.labelHeaderHistoryGUID = new System.Windows.Forms.Label();
this.labelHeaderIndex = new System.Windows.Forms.Label();
this.textBoxHistoryContents = new System.Windows.Forms.RichTextBox();
this.labelHeaderContents = new System.Windows.Forms.Label();
this.labelIndex = new System.Windows.Forms.Label();
this.labelHistoryGUID = new System.Windows.Forms.Label();
this.labelHistoryStatus = new System.Windows.Forms.Label();
this.listViewAvailableFormats = new System.Windows.Forms.ListView();
this.pictureBoxFormatContents = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewHistory)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxFormatContents)).BeginInit();
this.SuspendLayout();
//
// buttonRefreshHistory
//
this.buttonRefreshHistory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonRefreshHistory.Location = new System.Drawing.Point(1234, 23);
this.buttonRefreshHistory.Name = "buttonRefreshHistory";
this.buttonRefreshHistory.Size = new System.Drawing.Size(142, 40);
this.buttonRefreshHistory.TabIndex = 0;
this.buttonRefreshHistory.Text = "Refresh History";
this.buttonRefreshHistory.UseVisualStyleBackColor = true;
this.buttonRefreshHistory.Click += new System.EventHandler(this.buttonRefreshHistory_Click);
//
// dataGridViewHistory
//
this.dataGridViewHistory.AllowUserToAddRows = false;
this.dataGridViewHistory.AllowUserToDeleteRows = false;
this.dataGridViewHistory.AllowUserToResizeColumns = false;
this.dataGridViewHistory.AllowUserToResizeRows = false;
this.dataGridViewHistory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.dataGridViewHistory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewHistory.Location = new System.Drawing.Point(12, 80);
this.dataGridViewHistory.Name = "dataGridViewHistory";
this.dataGridViewHistory.ReadOnly = true;
this.dataGridViewHistory.RowHeadersWidth = 62;
this.dataGridViewHistory.RowTemplate.Height = 28;
this.dataGridViewHistory.Size = new System.Drawing.Size(564, 761);
this.dataGridViewHistory.TabIndex = 1;
//
// buttonDeleteHistoryItem
//
this.buttonDeleteHistoryItem.Location = new System.Drawing.Point(171, 23);
this.buttonDeleteHistoryItem.Name = "buttonDeleteHistoryItem";
this.buttonDeleteHistoryItem.Size = new System.Drawing.Size(171, 40);
this.buttonDeleteHistoryItem.TabIndex = 2;
this.buttonDeleteHistoryItem.Text = "Delete From History";
this.buttonDeleteHistoryItem.UseVisualStyleBackColor = true;
this.buttonDeleteHistoryItem.Click += new System.EventHandler(this.buttonDeleteHistoryItem_Click);
//
// labelHeaderAvailableFormats
//
this.labelHeaderAvailableFormats.AutoSize = true;
this.labelHeaderAvailableFormats.Location = new System.Drawing.Point(587, 153);
this.labelHeaderAvailableFormats.Name = "labelHeaderAvailableFormats";
this.labelHeaderAvailableFormats.Size = new System.Drawing.Size(111, 20);
this.labelHeaderAvailableFormats.TabIndex = 3;
this.labelHeaderAvailableFormats.Text = "Data Formats:";
//
// buttonSetActiveHistoryItem
//
this.buttonSetActiveHistoryItem.Location = new System.Drawing.Point(12, 23);
this.buttonSetActiveHistoryItem.Name = "buttonSetActiveHistoryItem";
this.buttonSetActiveHistoryItem.Size = new System.Drawing.Size(154, 40);
this.buttonSetActiveHistoryItem.TabIndex = 4;
this.buttonSetActiveHistoryItem.Text = "Make Active Item";
this.buttonSetActiveHistoryItem.UseVisualStyleBackColor = true;
this.buttonSetActiveHistoryItem.Click += new System.EventHandler(this.buttonSetActiveHistoryItem_Click);
//
// labelHeaderHistoryGUID
//
this.labelHeaderHistoryGUID.AutoSize = true;
this.labelHeaderHistoryGUID.Location = new System.Drawing.Point(587, 118);
this.labelHeaderHistoryGUID.Name = "labelHeaderHistoryGUID";
this.labelHeaderHistoryGUID.Size = new System.Drawing.Size(83, 20);
this.labelHeaderHistoryGUID.TabIndex = 5;
this.labelHeaderHistoryGUID.Text = "History ID:";
//
// labelHeaderIndex
//
this.labelHeaderIndex.AutoSize = true;
this.labelHeaderIndex.Location = new System.Drawing.Point(587, 87);
this.labelHeaderIndex.Name = "labelHeaderIndex";
this.labelHeaderIndex.Size = new System.Drawing.Size(52, 20);
this.labelHeaderIndex.TabIndex = 6;
this.labelHeaderIndex.Text = "Index:";
//
// textBoxHistoryContents
//
this.textBoxHistoryContents.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.textBoxHistoryContents.DetectUrls = false;
this.textBoxHistoryContents.Location = new System.Drawing.Point(586, 306);
this.textBoxHistoryContents.Name = "textBoxHistoryContents";
this.textBoxHistoryContents.Size = new System.Drawing.Size(790, 535);
this.textBoxHistoryContents.TabIndex = 7;
this.textBoxHistoryContents.Text = "";
//
// labelHeaderContents
//
this.labelHeaderContents.AutoSize = true;
this.labelHeaderContents.Location = new System.Drawing.Point(582, 280);
this.labelHeaderContents.Name = "labelHeaderContents";
this.labelHeaderContents.Size = new System.Drawing.Size(190, 20);
this.labelHeaderContents.TabIndex = 8;
this.labelHeaderContents.Text = "Format Contents As Text:";
//
// labelIndex
//
this.labelIndex.AutoSize = true;
this.labelIndex.Location = new System.Drawing.Point(711, 87);
this.labelIndex.Name = "labelIndex";
this.labelIndex.Size = new System.Drawing.Size(56, 20);
this.labelIndex.TabIndex = 11;
this.labelIndex.Text = "[Index]";
//
// labelHistoryGUID
//
this.labelHistoryGUID.AutoSize = true;
this.labelHistoryGUID.Location = new System.Drawing.Point(711, 118);
this.labelHistoryGUID.Name = "labelHistoryGUID";
this.labelHistoryGUID.Size = new System.Drawing.Size(87, 20);
this.labelHistoryGUID.TabIndex = 10;
this.labelHistoryGUID.Text = "[History ID]";
//
// labelHistoryStatus
//
this.labelHistoryStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelHistoryStatus.Location = new System.Drawing.Point(1106, 66);
this.labelHistoryStatus.Margin = new System.Windows.Forms.Padding(0);
this.labelHistoryStatus.Name = "labelHistoryStatus";
this.labelHistoryStatus.Size = new System.Drawing.Size(270, 24);
this.labelHistoryStatus.TabIndex = 12;
this.labelHistoryStatus.Text = "Clipboard History Status";
this.labelHistoryStatus.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// listViewAvailableFormats
//
this.listViewAvailableFormats.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listViewAvailableFormats.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listViewAvailableFormats.HideSelection = false;
this.listViewAvailableFormats.Location = new System.Drawing.Point(715, 153);
this.listViewAvailableFormats.MultiSelect = false;
this.listViewAvailableFormats.Name = "listViewAvailableFormats";
this.listViewAvailableFormats.ShowGroups = false;
this.listViewAvailableFormats.Size = new System.Drawing.Size(661, 112);
this.listViewAvailableFormats.TabIndex = 13;
this.listViewAvailableFormats.UseCompatibleStateImageBehavior = false;
this.listViewAvailableFormats.View = System.Windows.Forms.View.Details;
this.listViewAvailableFormats.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.OnFormatsListViewSelectionChanged);
//
// pictureBoxFormatContents
//
this.pictureBoxFormatContents.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.pictureBoxFormatContents.Location = new System.Drawing.Point(602, 319);
this.pictureBoxFormatContents.Name = "pictureBoxFormatContents";
this.pictureBoxFormatContents.Size = new System.Drawing.Size(756, 510);
this.pictureBoxFormatContents.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBoxFormatContents.TabIndex = 14;
this.pictureBoxFormatContents.TabStop = false;
this.pictureBoxFormatContents.Visible = false;
//
// HistoryForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1388, 853);
this.Controls.Add(this.pictureBoxFormatContents);
this.Controls.Add(this.listViewAvailableFormats);
this.Controls.Add(this.labelHistoryStatus);
this.Controls.Add(this.labelIndex);
this.Controls.Add(this.labelHistoryGUID);
this.Controls.Add(this.labelHeaderContents);
this.Controls.Add(this.textBoxHistoryContents);
this.Controls.Add(this.labelHeaderIndex);
this.Controls.Add(this.labelHeaderHistoryGUID);
this.Controls.Add(this.buttonSetActiveHistoryItem);
this.Controls.Add(this.labelHeaderAvailableFormats);
this.Controls.Add(this.buttonDeleteHistoryItem);
this.Controls.Add(this.dataGridViewHistory);
this.Controls.Add(this.buttonRefreshHistory);
this.Name = "HistoryForm";
this.Text = "Clipboard History Info";
((System.ComponentModel.ISupportInitialize)(this.dataGridViewHistory)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxFormatContents)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonRefreshHistory;
private System.Windows.Forms.DataGridView dataGridViewHistory;
private System.Windows.Forms.Button buttonDeleteHistoryItem;
private System.Windows.Forms.Label labelHeaderAvailableFormats;
private System.Windows.Forms.Button buttonSetActiveHistoryItem;
private System.Windows.Forms.Label labelHeaderHistoryGUID;
private System.Windows.Forms.Label labelHeaderIndex;
private System.Windows.Forms.RichTextBox textBoxHistoryContents;
private System.Windows.Forms.Label labelHeaderContents;
private System.Windows.Forms.Label labelIndex;
private System.Windows.Forms.Label labelHistoryGUID;
private System.Windows.Forms.Label labelHistoryStatus;
private System.Windows.Forms.ListView listViewAvailableFormats;
private System.Windows.Forms.PictureBox pictureBoxFormatContents;
}