forked from petabridge/akka-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RepoResultsForm.Designer.cs
157 lines (151 loc) · 6.34 KB
/
RepoResultsForm.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
namespace GithubActors
{
partial class RepoResultsForm
{
/// <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.dgUsers = new System.Windows.Forms.DataGridView();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.tsProgress = new System.Windows.Forms.ToolStripProgressBar();
this.tsStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.Owner = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.RepoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.URL = new System.Windows.Forms.DataGridViewLinkColumn();
this.Shared = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Issues = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Stars = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Forks = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgUsers)).BeginInit();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// dgUsers
//
this.dgUsers.AllowUserToOrderColumns = true;
this.dgUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Owner,
this.RepoName,
this.URL,
this.Shared,
this.Issues,
this.Stars,
this.Forks});
this.dgUsers.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgUsers.Location = new System.Drawing.Point(0, 0);
this.dgUsers.Name = "dgUsers";
this.dgUsers.Size = new System.Drawing.Size(739, 322);
this.dgUsers.TabIndex = 0;
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsProgress,
this.tsStatus});
this.statusStrip1.Location = new System.Drawing.Point(0, 300);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(739, 22);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// tsProgress
//
this.tsProgress.Name = "tsProgress";
this.tsProgress.Size = new System.Drawing.Size(100, 16);
this.tsProgress.Visible = false;
//
// tsStatus
//
this.tsStatus.Name = "tsStatus";
this.tsStatus.Size = new System.Drawing.Size(73, 17);
this.tsStatus.Text = "Processing...";
this.tsStatus.Visible = false;
//
// Owner
//
this.Owner.HeaderText = "Owner";
this.Owner.Name = "Owner";
//
// RepoName
//
this.RepoName.HeaderText = "Name";
this.RepoName.Name = "RepoName";
//
// URL
//
this.URL.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.URL.HeaderText = "URL";
this.URL.Name = "URL";
//
// Shared
//
this.Shared.HeaderText = "SharedStars";
this.Shared.Name = "Shared";
//
// Issues
//
this.Issues.HeaderText = "Open Issues";
this.Issues.Name = "Issues";
//
// Stars
//
this.Stars.HeaderText = "Stars";
this.Stars.Name = "Stars";
//
// Forks
//
this.Forks.HeaderText = "Forks";
this.Forks.Name = "Forks";
//
// RepoResultsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(739, 322);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.dgUsers);
this.Name = "RepoResultsForm";
this.Text = "Repos Similar to {RepoName}";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RepoResultsForm_FormClosing);
this.Load += new System.EventHandler(this.RepoResultsForm_Load);
((System.ComponentModel.ISupportInitialize)(this.dgUsers)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgUsers;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripProgressBar tsProgress;
private System.Windows.Forms.ToolStripStatusLabel tsStatus;
private System.Windows.Forms.DataGridViewTextBoxColumn Owner;
private System.Windows.Forms.DataGridViewTextBoxColumn RepoName;
private System.Windows.Forms.DataGridViewLinkColumn URL;
private System.Windows.Forms.DataGridViewTextBoxColumn Shared;
private System.Windows.Forms.DataGridViewTextBoxColumn Issues;
private System.Windows.Forms.DataGridViewTextBoxColumn Stars;
private System.Windows.Forms.DataGridViewTextBoxColumn Forks;
}
}