Menu

[38707f]: / FormRecreateRepos.Designer.cs  Maximize  Restore  History

Download this file

252 lines (246 with data), 12.5 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
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
248
249
250
251
252
namespace GitForce
{
partial class FormRecreateRepos
{
/// <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(FormRecreateRepos));
this.btClose = new System.Windows.Forms.Button();
this.labelHelp = new System.Windows.Forms.Label();
this.list = new System.Windows.Forms.ListView();
this.path = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.status = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.btLocate = new System.Windows.Forms.Button();
this.btCreate = new System.Windows.Forms.Button();
this.btDelete = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.textRootPath = new System.Windows.Forms.TextBox();
this.btBrowse = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.folder = new System.Windows.Forms.FolderBrowserDialog();
this.btHelp = new System.Windows.Forms.Button();
this.btCancel = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btClose
//
this.btClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btClose.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btClose.Enabled = false;
this.btClose.Location = new System.Drawing.Point(330, 318);
this.btClose.Name = "btClose";
this.btClose.Size = new System.Drawing.Size(75, 23);
this.btClose.TabIndex = 3;
this.btClose.Text = "Accept";
this.btClose.UseVisualStyleBackColor = true;
//
// labelHelp
//
this.labelHelp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelHelp.BackColor = System.Drawing.SystemColors.Info;
this.labelHelp.Location = new System.Drawing.Point(12, 9);
this.labelHelp.Name = "labelHelp";
this.labelHelp.Size = new System.Drawing.Size(474, 49);
this.labelHelp.TabIndex = 0;
this.labelHelp.Text = "Some of the repos referenced to by the loaded workspace file could not be found o" +
"n the designated paths. Please select repos that are not valid (highlighted in r" +
"ed) and take a desired action.";
//
// list
//
this.list.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.list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.path,
this.status});
this.list.FullRowSelect = true;
this.list.GridLines = true;
this.list.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.list.HideSelection = false;
this.list.Location = new System.Drawing.Point(12, 61);
this.list.Name = "list";
this.list.ShowGroups = false;
this.list.Size = new System.Drawing.Size(474, 144);
this.list.TabIndex = 1;
this.list.UseCompatibleStateImageBehavior = false;
this.list.View = System.Windows.Forms.View.Details;
this.list.SelectedIndexChanged += new System.EventHandler(this.ListSelectedIndexChanged);
this.list.SizeChanged += new System.EventHandler(this.ListSizeChanged);
//
// path
//
this.path.Text = "Repo path";
//
// status
//
this.status.Text = "Status";
//
// btLocate
//
this.btLocate.Enabled = false;
this.btLocate.Location = new System.Drawing.Point(6, 19);
this.btLocate.Name = "btLocate";
this.btLocate.Size = new System.Drawing.Size(75, 23);
this.btLocate.TabIndex = 0;
this.btLocate.Text = "Locate...";
this.btLocate.UseVisualStyleBackColor = true;
this.btLocate.Click += new System.EventHandler(this.BtLocateClick);
//
// btCreate
//
this.btCreate.Enabled = false;
this.btCreate.Location = new System.Drawing.Point(87, 19);
this.btCreate.Name = "btCreate";
this.btCreate.Size = new System.Drawing.Size(75, 23);
this.btCreate.TabIndex = 1;
this.btCreate.Text = "Create...";
this.btCreate.UseVisualStyleBackColor = true;
this.btCreate.Click += new System.EventHandler(this.BtCreateClick);
//
// btDelete
//
this.btDelete.Enabled = false;
this.btDelete.Location = new System.Drawing.Point(168, 19);
this.btDelete.Name = "btDelete";
this.btDelete.Size = new System.Drawing.Size(75, 23);
this.btDelete.TabIndex = 2;
this.btDelete.Text = "Delete";
this.btDelete.UseVisualStyleBackColor = true;
this.btDelete.Click += new System.EventHandler(this.BtDeleteClick);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 54);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Common root path:";
//
// textRootPath
//
this.textRootPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textRootPath.Location = new System.Drawing.Point(6, 70);
this.textRootPath.Name = "textRootPath";
this.textRootPath.ReadOnly = true;
this.textRootPath.Size = new System.Drawing.Size(381, 20);
this.textRootPath.TabIndex = 3;
//
// btBrowse
//
this.btBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btBrowse.Enabled = false;
this.btBrowse.Location = new System.Drawing.Point(393, 68);
this.btBrowse.Name = "btBrowse";
this.btBrowse.Size = new System.Drawing.Size(75, 23);
this.btBrowse.TabIndex = 4;
this.btBrowse.Text = "Browse...";
this.btBrowse.UseVisualStyleBackColor = true;
this.btBrowse.Click += new System.EventHandler(this.BtBrowseClick);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.btLocate);
this.groupBox1.Controls.Add(this.btBrowse);
this.groupBox1.Controls.Add(this.btCreate);
this.groupBox1.Controls.Add(this.textRootPath);
this.groupBox1.Controls.Add(this.btDelete);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 211);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(474, 101);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
//
// btHelp
//
this.btHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btHelp.Location = new System.Drawing.Point(249, 318);
this.btHelp.Name = "btHelp";
this.btHelp.Size = new System.Drawing.Size(75, 23);
this.btHelp.TabIndex = 2;
this.btHelp.Tag = "";
this.btHelp.Text = "Help";
this.btHelp.UseVisualStyleBackColor = true;
this.btHelp.Click += new System.EventHandler(this.BtHelpClick);
//
// btCancel
//
this.btCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btCancel.Location = new System.Drawing.Point(411, 318);
this.btCancel.Name = "btCancel";
this.btCancel.Size = new System.Drawing.Size(75, 23);
this.btCancel.TabIndex = 4;
this.btCancel.Text = "Cancel";
this.btCancel.UseVisualStyleBackColor = true;
//
// FormRecreateRepos
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(498, 353);
this.Controls.Add(this.btCancel);
this.Controls.Add(this.btHelp);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.list);
this.Controls.Add(this.labelHelp);
this.Controls.Add(this.btClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(290, 324);
this.Name = "FormRecreateRepos";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Recreate Missing Repos";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormRecreateReposFormClosing);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btClose;
private System.Windows.Forms.Label labelHelp;
private System.Windows.Forms.ListView list;
private System.Windows.Forms.Button btLocate;
private System.Windows.Forms.Button btCreate;
private System.Windows.Forms.Button btDelete;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textRootPath;
private System.Windows.Forms.Button btBrowse;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ColumnHeader path;
private System.Windows.Forms.ColumnHeader status;
private System.Windows.Forms.FolderBrowserDialog folder;
private System.Windows.Forms.Button btHelp;
private System.Windows.Forms.Button btCancel;
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.