smartsdr-dsp/pc/CODEC2 GUI/CODEC2 GUI/SelectForm.Designer.cs
2015-08-31 18:46:32 -04:00

182 lines
7.8 KiB
C#

namespace CODEC2_GUI
{
partial class SelectForm
{
/// <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.components = new System.ComponentModel.Container();
this.btnSelect = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.nameCol = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.descCol = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.rb3 = new System.Windows.Forms.RadioButton();
this.rb2 = new System.Windows.Forms.RadioButton();
this.rb1 = new System.Windows.Forms.RadioButton();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btnSelect
//
this.btnSelect.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnSelect.Location = new System.Drawing.Point(115, 281);
this.btnSelect.Name = "btnSelect";
this.btnSelect.Size = new System.Drawing.Size(101, 33);
this.btnSelect.TabIndex = 1;
this.btnSelect.Text = "Select";
this.btnSelect.UseVisualStyleBackColor = true;
this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(431, 281);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(101, 33);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.nameCol,
this.descCol});
this.listView1.FullRowSelect = true;
this.listView1.HideSelection = false;
this.listView1.Location = new System.Drawing.Point(12, 64);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(653, 205);
this.listView1.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
//
// nameCol
//
this.nameCol.Text = "Name";
this.nameCol.Width = 100;
//
// descCol
//
this.descCol.Text = "Description";
this.descCol.Width = 515;
//
// bindingSource1
//
this.bindingSource1.DataMember = "items";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rb3);
this.groupBox1.Controls.Add(this.rb2);
this.groupBox1.Controls.Add(this.rb1);
this.groupBox1.Location = new System.Drawing.Point(13, 3);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(652, 49);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Mode";
//
// rb3
//
this.rb3.AutoSize = true;
this.rb3.Location = new System.Drawing.Point(404, 22);
this.rb3.Name = "rb3";
this.rb3.Size = new System.Drawing.Size(229, 25);
this.rb3.TabIndex = 2;
this.rb3.TabStop = true;
this.rb3.Text = "Reflector Commands";
this.rb3.UseVisualStyleBackColor = true;
this.rb3.CheckedChanged += new System.EventHandler(this.rb3_CheckedChanged);
//
// rb2
//
this.rb2.AutoSize = true;
this.rb2.Location = new System.Drawing.Point(230, 22);
this.rb2.Name = "rb2";
this.rb2.Size = new System.Drawing.Size(141, 25);
this.rb2.TabIndex = 1;
this.rb2.TabStop = true;
this.rb2.Text = "Reflectors";
this.rb2.UseVisualStyleBackColor = true;
this.rb2.CheckedChanged += new System.EventHandler(this.rb2_CheckedChanged);
//
// rb1
//
this.rb1.AutoSize = true;
this.rb1.Location = new System.Drawing.Point(41, 22);
this.rb1.Name = "rb1";
this.rb1.Size = new System.Drawing.Size(130, 25);
this.rb1.TabIndex = 0;
this.rb1.TabStop = true;
this.rb1.Text = "Repeaters";
this.rb1.UseVisualStyleBackColor = true;
this.rb1.Click += new System.EventHandler(this.rb1_Click);
//
// SelectForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(677, 326);
this.ControlBox = false;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.listView1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSelect);
this.Font = new System.Drawing.Font("Courier New", 11F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "SelectForm";
this.Text = "Select";
this.Load += new System.EventHandler(this.SelectForm_Load);
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnSelect;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader nameCol;
private System.Windows.Forms.ColumnHeader descCol;
private System.Windows.Forms.BindingSource bindingSource1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton rb3;
private System.Windows.Forms.RadioButton rb2;
private System.Windows.Forms.RadioButton rb1;
}
}