mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
84 lines
No EOL
3.6 KiB
C#
84 lines
No EOL
3.6 KiB
C#
namespace Cosmos.Debug.GDB {
|
|
partial class FormWatches {
|
|
/// <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.panel3 = new System.Windows.Forms.Panel();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.panel3.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel3
|
|
//
|
|
this.panel3.Controls.Add(this.button1);
|
|
this.panel3.Controls.Add(this.textBox1);
|
|
this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel3.Location = new System.Drawing.Point(0, 0);
|
|
this.panel3.Name = "panel3";
|
|
this.panel3.Size = new System.Drawing.Size(284, 39);
|
|
this.panel3.TabIndex = 67;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.button1.Location = new System.Drawing.Point(253, 8);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(24, 23);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "+";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBox1.Location = new System.Drawing.Point(9, 8);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(238, 20);
|
|
this.textBox1.TabIndex = 4;
|
|
//
|
|
// FormWatches
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(284, 262);
|
|
this.Controls.Add(this.panel3);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "FormWatches";
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "Watches";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormWatches_FormClosing);
|
|
this.panel3.ResumeLayout(false);
|
|
this.panel3.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel3;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
}
|
|
} |