FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 0429582c authored by Dr Adam Thorn's avatar Dr Adam Thorn
Browse files

Set status window icons

parent c4d859ad
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StatusLogWindow));
this.okButton = new System.Windows.Forms.Button();
this.textBox = new System.Windows.Forms.TextBox();
this.copyButton = new System.Windows.Forms.Button();
......@@ -37,7 +38,7 @@
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.Location = new System.Drawing.Point(535, 314);
this.okButton.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.okButton.Margin = new System.Windows.Forms.Padding(2);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(56, 37);
this.okButton.TabIndex = 1;
......@@ -51,7 +52,7 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox.Location = new System.Drawing.Point(9, 10);
this.textBox.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.textBox.Margin = new System.Windows.Forms.Padding(2);
this.textBox.Multiline = true;
this.textBox.Name = "textBox";
this.textBox.ReadOnly = true;
......@@ -63,7 +64,7 @@
//
this.copyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.copyButton.Location = new System.Drawing.Point(469, 314);
this.copyButton.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.copyButton.Margin = new System.Windows.Forms.Padding(2);
this.copyButton.Name = "copyButton";
this.copyButton.Size = new System.Drawing.Size(62, 37);
this.copyButton.TabIndex = 3;
......@@ -79,7 +80,8 @@
this.Controls.Add(this.copyButton);
this.Controls.Add(this.textBox);
this.Controls.Add(this.okButton);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "StatusLogWindow";
this.Text = "WPKG Notifier Logs";
this.Load += new System.EventHandler(this.Form1_Load);
......
This diff is collapsed.
......@@ -28,6 +28,7 @@
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StatusWindow));
this.syncButton = new System.Windows.Forms.Button();
this.closeButton = new System.Windows.Forms.Button();
this.pendingChangesTextBox = new System.Windows.Forms.TextBox();
......@@ -40,7 +41,7 @@
// syncButton
//
this.syncButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.syncButton.Location = new System.Drawing.Point(760, 592);
this.syncButton.Location = new System.Drawing.Point(759, 592);
this.syncButton.Margin = new System.Windows.Forms.Padding(2);
this.syncButton.Name = "syncButton";
this.syncButton.Size = new System.Drawing.Size(70, 32);
......@@ -100,7 +101,7 @@
// queryButton
//
this.queryButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.queryButton.Location = new System.Drawing.Point(656, 593);
this.queryButton.Location = new System.Drawing.Point(655, 593);
this.queryButton.Name = "queryButton";
this.queryButton.Size = new System.Drawing.Size(75, 30);
this.queryButton.TabIndex = 4;
......@@ -117,7 +118,7 @@
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 88.22115F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.77885F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 86F));
this.tableLayoutPanel1.Controls.Add(this.pendingChangesTextBox, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.queryButton, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.syncButton, 1, 2);
......@@ -138,9 +139,10 @@
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(940, 659);
this.Controls.Add(this.tableLayoutPanel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "StatusWindow";
this.Text = "SyncDialog";
this.Text = "WPKG status";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment