Files
PostManCloneApp/PostmanCloneUI/Dashboard.Designer.cs

157 lines
5.7 KiB
C#

namespace PostmanCloneUI
{
partial class Dashboard
{
/// <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()
{
formHeader = new Label();
apiLabel = new Label();
apiText = new TextBox();
callApi = new Button();
resultsText = new TextBox();
statusStrip = new StatusStrip();
systemStatus = new ToolStripStatusLabel();
resultLabel = new Label();
statusStrip.SuspendLayout();
SuspendLayout();
//
// formHeader
//
formHeader.AutoSize = true;
formHeader.Font = new Font("Segoe UI", 26.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
formHeader.Location = new Point(31, 29);
formHeader.Name = "formHeader";
formHeader.Size = new Size(254, 47);
formHeader.TabIndex = 0;
formHeader.Text = "Postman Clone";
//
// apiLabel
//
apiLabel.AutoSize = true;
apiLabel.Location = new Point(36, 116);
apiLabel.Name = "apiLabel";
apiLabel.Size = new Size(53, 32);
apiLabel.TabIndex = 1;
apiLabel.Text = "API:";
//
// apiText
//
apiText.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
apiText.BorderStyle = BorderStyle.FixedSingle;
apiText.Location = new Point(95, 113);
apiText.Name = "apiText";
apiText.Size = new Size(709, 39);
apiText.TabIndex = 2;
//
// callApi
//
callApi.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right;
callApi.Location = new Point(810, 111);
callApi.Name = "callApi";
callApi.Size = new Size(70, 42);
callApi.TabIndex = 3;
callApi.Text = "Go";
callApi.UseVisualStyleBackColor = true;
callApi.Click += callApi_Click;
//
// resultsText
//
resultsText.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
resultsText.BackColor = Color.White;
resultsText.BorderStyle = BorderStyle.FixedSingle;
resultsText.Location = new Point(36, 215);
resultsText.Multiline = true;
resultsText.Name = "resultsText";
resultsText.ReadOnly = true;
resultsText.ScrollBars = ScrollBars.Both;
resultsText.Size = new Size(843, 240);
resultsText.TabIndex = 4;
//
// statusStrip
//
statusStrip.BackColor = Color.White;
statusStrip.Items.AddRange(new ToolStripItem[] { systemStatus });
statusStrip.Location = new Point(0, 521);
statusStrip.Name = "statusStrip";
statusStrip.Size = new Size(903, 30);
statusStrip.TabIndex = 5;
statusStrip.Text = "System Status";
//
// systemStatus
//
systemStatus.BackColor = Color.White;
systemStatus.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
systemStatus.Name = "systemStatus";
systemStatus.Size = new Size(62, 25);
systemStatus.Text = "Ready";
//
// resultLabel
//
resultLabel.AutoSize = true;
resultLabel.Location = new Point(36, 180);
resultLabel.Name = "resultLabel";
resultLabel.Size = new Size(88, 32);
resultLabel.TabIndex = 6;
resultLabel.Text = "Results";
//
// Dashboard
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.White;
ClientSize = new Size(903, 551);
Controls.Add(resultLabel);
Controls.Add(statusStrip);
Controls.Add(resultsText);
Controls.Add(callApi);
Controls.Add(apiText);
Controls.Add(apiLabel);
Controls.Add(formHeader);
Font = new Font("Segoe UI", 18F, FontStyle.Regular, GraphicsUnit.Point, 0);
Margin = new Padding(6);
Name = "Dashboard";
StartPosition = FormStartPosition.CenterScreen;
Text = "Postman Clone by Tim Corey";
statusStrip.ResumeLayout(false);
statusStrip.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label formHeader;
private Label apiLabel;
private TextBox apiText;
private Button callApi;
private TextBox resultsText;
private StatusStrip statusStrip;
private Label resultLabel;
private ToolStripStatusLabel systemStatus;
}
}