133 lines
5.8 KiB
C#
133 lines
5.8 KiB
C#
namespace DD2Switcher {
|
|
partial class WindowPanelForm {
|
|
/// <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.indexLabel = new System.Windows.Forms.Label();
|
|
this.nameLabel = new System.Windows.Forms.Label();
|
|
this.pidLabel = new System.Windows.Forms.Label();
|
|
this.titleLabel = new System.Windows.Forms.Label();
|
|
this.firstLastLabel = new System.Windows.Forms.Label();
|
|
this.pickButton = new System.Windows.Forms.Button();
|
|
this.untrackButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// indexLabel
|
|
//
|
|
this.indexLabel.AutoSize = true;
|
|
this.indexLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
|
this.indexLabel.Location = new System.Drawing.Point(10, 5);
|
|
this.indexLabel.Name = "indexLabel";
|
|
this.indexLabel.Size = new System.Drawing.Size(52, 15);
|
|
this.indexLabel.TabIndex = 0;
|
|
this.indexLabel.Text = "Index: 0";
|
|
//
|
|
// nameLabel
|
|
//
|
|
this.nameLabel.AutoSize = true;
|
|
this.nameLabel.Font = new System.Drawing.Font("Segoe UI", 9F);
|
|
this.nameLabel.Location = new System.Drawing.Point(12, 35);
|
|
this.nameLabel.Name = "nameLabel";
|
|
this.nameLabel.Size = new System.Drawing.Size(45, 15);
|
|
this.nameLabel.TabIndex = 1;
|
|
this.nameLabel.Text = "Name: ";
|
|
//
|
|
// pidLabel
|
|
//
|
|
this.pidLabel.AutoSize = true;
|
|
this.pidLabel.Font = new System.Drawing.Font("Segoe UI", 9F);
|
|
this.pidLabel.Location = new System.Drawing.Point(12, 50);
|
|
this.pidLabel.Name = "pidLabel";
|
|
this.pidLabel.Size = new System.Drawing.Size(28, 15);
|
|
this.pidLabel.TabIndex = 2;
|
|
this.pidLabel.Text = "PID:";
|
|
//
|
|
// titleLabel
|
|
//
|
|
this.titleLabel.AutoSize = true;
|
|
this.titleLabel.Font = new System.Drawing.Font("Segoe UI", 9F);
|
|
this.titleLabel.Location = new System.Drawing.Point(12, 20);
|
|
this.titleLabel.MaximumSize = new System.Drawing.Size(200, 0);
|
|
this.titleLabel.Name = "titleLabel";
|
|
this.titleLabel.Size = new System.Drawing.Size(36, 15);
|
|
this.titleLabel.TabIndex = 3;
|
|
this.titleLabel.Text = "Title: ";
|
|
//
|
|
// firstLastLabel
|
|
//
|
|
this.firstLastLabel.AutoSize = true;
|
|
this.firstLastLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
|
this.firstLastLabel.ForeColor = System.Drawing.Color.DarkBlue;
|
|
this.firstLastLabel.Location = new System.Drawing.Point(200, 45);
|
|
this.firstLastLabel.Name = "firstLastLabel";
|
|
this.firstLastLabel.Size = new System.Drawing.Size(0, 15);
|
|
this.firstLastLabel.TabIndex = 4;
|
|
//
|
|
// pickButton
|
|
//
|
|
this.pickButton.Location = new System.Drawing.Point(420, 10);
|
|
this.pickButton.Name = "pickButton";
|
|
this.pickButton.Size = new System.Drawing.Size(88, 25);
|
|
this.pickButton.TabIndex = 5;
|
|
this.pickButton.Text = "Pick";
|
|
this.pickButton.UseVisualStyleBackColor = true;
|
|
this.pickButton.Click += new System.EventHandler(this.pickButton_Click);
|
|
//
|
|
// untrackButton
|
|
//
|
|
this.untrackButton.Location = new System.Drawing.Point(420, 45);
|
|
this.untrackButton.Name = "untrackButton";
|
|
this.untrackButton.Size = new System.Drawing.Size(88, 25);
|
|
this.untrackButton.TabIndex = 6;
|
|
this.untrackButton.Text = "Untrack";
|
|
this.untrackButton.UseVisualStyleBackColor = true;
|
|
this.untrackButton.Click += new System.EventHandler(this.untrackButton_Click);
|
|
//
|
|
// WindowPanelForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.indexLabel);
|
|
this.Controls.Add(this.nameLabel);
|
|
this.Controls.Add(this.pidLabel);
|
|
this.Controls.Add(this.titleLabel);
|
|
this.Controls.Add(this.firstLastLabel);
|
|
this.Controls.Add(this.pickButton);
|
|
this.Controls.Add(this.untrackButton);
|
|
this.Name = "WindowPanelForm";
|
|
this.Size = new System.Drawing.Size(520, 80);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label indexLabel;
|
|
private System.Windows.Forms.Label nameLabel;
|
|
private System.Windows.Forms.Label pidLabel;
|
|
private System.Windows.Forms.Label titleLabel;
|
|
private System.Windows.Forms.Label firstLastLabel;
|
|
private System.Windows.Forms.Button pickButton;
|
|
private System.Windows.Forms.Button untrackButton;
|
|
}
|
|
} |