namespace TradeIdeas.TIProSpeechManager
{
partial class SpeechManagerForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.listViewMessageSources = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.radVoiceNeutral = new System.Windows.Forms.RadioButton();
this.radVoiceMale = new System.Windows.Forms.RadioButton();
this.radVoiceFemale = new System.Windows.Forms.RadioButton();
this.btnSave = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// listViewMessageSources
//
this.listViewMessageSources.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listViewMessageSources.HideSelection = false;
this.listViewMessageSources.Location = new System.Drawing.Point(28, 31);
this.listViewMessageSources.MultiSelect = false;
this.listViewMessageSources.Name = "listViewMessageSources";
this.listViewMessageSources.Size = new System.Drawing.Size(203, 146);
this.listViewMessageSources.TabIndex = 0;
this.listViewMessageSources.UseCompatibleStateImageBehavior = false;
this.listViewMessageSources.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Source";
this.columnHeader1.Width = 120;
//
// columnHeader2
//
this.columnHeader2.Text = "Enabled";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(25, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Message Sources:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(13, 6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(75, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Voice Gender:";
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.radVoiceNeutral);
this.panel1.Controls.Add(this.radVoiceMale);
this.panel1.Controls.Add(this.radVoiceFemale);
this.panel1.Controls.Add(this.label2);
this.panel1.Location = new System.Drawing.Point(314, 31);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(116, 104);
this.panel1.TabIndex = 3;
//
// radVoiceNeutral
//
this.radVoiceNeutral.AutoSize = true;
this.radVoiceNeutral.Location = new System.Drawing.Point(16, 73);
this.radVoiceNeutral.Name = "radVoiceNeutral";
this.radVoiceNeutral.Size = new System.Drawing.Size(59, 17);
this.radVoiceNeutral.TabIndex = 5;
this.radVoiceNeutral.TabStop = true;
this.radVoiceNeutral.Text = "Neutral";
this.radVoiceNeutral.UseVisualStyleBackColor = true;
//
// radVoiceMale
//
this.radVoiceMale.AutoSize = true;
this.radVoiceMale.Location = new System.Drawing.Point(16, 50);
this.radVoiceMale.Name = "radVoiceMale";
this.radVoiceMale.Size = new System.Drawing.Size(48, 17);
this.radVoiceMale.TabIndex = 4;
this.radVoiceMale.TabStop = true;
this.radVoiceMale.Text = "Male";
this.radVoiceMale.UseVisualStyleBackColor = true;
//
// radVoiceFemale
//
this.radVoiceFemale.AutoSize = true;
this.radVoiceFemale.Location = new System.Drawing.Point(16, 27);
this.radVoiceFemale.Name = "radVoiceFemale";
this.radVoiceFemale.Size = new System.Drawing.Size(59, 17);
this.radVoiceFemale.TabIndex = 3;
this.radVoiceFemale.TabStop = true;
this.radVoiceFemale.Text = "Female";
this.radVoiceFemale.UseVisualStyleBackColor = true;
//
// btnSave
//
this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnSave.Location = new System.Drawing.Point(124, 202);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 4;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(258, 202);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// SpeechManagerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(483, 245);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label1);
this.Controls.Add(this.listViewMessageSources);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "SpeechManagerForm";
this.Text = "Speech Manager";
this.Shown += new System.EventHandler(this.SpeechManagerForm_Shown);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView listViewMessageSources;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.RadioButton radVoiceNeutral;
private System.Windows.Forms.RadioButton radVoiceMale;
private System.Windows.Forms.RadioButton radVoiceFemale;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnCancel;
}
}