forked from KSP-CKAN/CKAN-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewRepoDialog.Designer.cs
More file actions
117 lines (111 loc) · 5.1 KB
/
NewRepoDialog.Designer.cs
File metadata and controls
117 lines (111 loc) · 5.1 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
namespace CKAN
{
partial class NewRepoDialog
{
/// <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.RepositoryGroupBox = new System.Windows.Forms.GroupBox();
this.RepoUrlTextBox = new System.Windows.Forms.TextBox();
this.RepoCancel = new System.Windows.Forms.Button();
this.RepoOK = new System.Windows.Forms.Button();
this.ReposListBox = new System.Windows.Forms.ListBox();
this.RepositoryGroupBox.SuspendLayout();
this.SuspendLayout();
//
// RepositoryGroupBox
//
this.RepositoryGroupBox.Controls.Add(this.RepoUrlTextBox);
this.RepositoryGroupBox.Controls.Add(this.RepoCancel);
this.RepositoryGroupBox.Controls.Add(this.RepoOK);
this.RepositoryGroupBox.Controls.Add(this.ReposListBox);
this.RepositoryGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.RepositoryGroupBox.Location = new System.Drawing.Point(12, 12);
this.RepositoryGroupBox.Name = "RepositoryGroupBox";
this.RepositoryGroupBox.Size = new System.Drawing.Size(476, 410);
this.RepositoryGroupBox.TabIndex = 8;
this.RepositoryGroupBox.TabStop = false;
this.RepositoryGroupBox.Text = "Official repositories";
//
// RepoUrlTextBox
//
this.RepoUrlTextBox.Location = new System.Drawing.Point(6, 384);
this.RepoUrlTextBox.Name = "RepoUrlTextBox";
this.RepoUrlTextBox.Size = new System.Drawing.Size(340, 20);
this.RepoUrlTextBox.TabIndex = 11;
this.RepoUrlTextBox.TextChanged += new System.EventHandler(this.RepoUrlTextBox_TextChanged);
//
// RepoCancel
//
this.RepoCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.RepoCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.RepoCancel.Location = new System.Drawing.Point(352, 380);
this.RepoCancel.Name = "RepoCancel";
this.RepoCancel.Size = new System.Drawing.Size(56, 26);
this.RepoCancel.TabIndex = 10;
this.RepoCancel.Text = "Cancel";
this.RepoCancel.UseVisualStyleBackColor = true;
//
// RepoOK
//
this.RepoOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.RepoOK.Enabled = false;
this.RepoOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.RepoOK.Location = new System.Drawing.Point(414, 380);
this.RepoOK.Name = "RepoOK";
this.RepoOK.Size = new System.Drawing.Size(56, 26);
this.RepoOK.TabIndex = 9;
this.RepoOK.Text = "OK";
this.RepoOK.UseVisualStyleBackColor = true;
//
// ReposListBox
//
this.ReposListBox.FormattingEnabled = true;
this.ReposListBox.Location = new System.Drawing.Point(6, 19);
this.ReposListBox.Name = "ReposListBox";
this.ReposListBox.Size = new System.Drawing.Size(464, 355);
this.ReposListBox.TabIndex = 8;
this.ReposListBox.SelectedIndexChanged += new System.EventHandler(this.ReposListBox_SelectedIndexChanged);
//
// NewRepoDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(495, 434);
this.Controls.Add(this.RepositoryGroupBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "NewRepoDialog";
this.Text = "Settings";
this.Load += new System.EventHandler(this.NewRepoDialog_Load);
this.RepositoryGroupBox.ResumeLayout(false);
this.RepositoryGroupBox.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox RepositoryGroupBox;
private System.Windows.Forms.Button RepoOK;
private System.Windows.Forms.ListBox ReposListBox;
private System.Windows.Forms.Button RepoCancel;
public System.Windows.Forms.TextBox RepoUrlTextBox;
}
}