partial class Agent
{
///
/// 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( Agent ) );
this.speechTextBox = new System.Windows.Forms.TextBox();
this.actionsCombo = new System.Windows.Forms.ComboBox();
this.speakButton = new System.Windows.Forms.Button();
this.mainAgent = new AxAgentObjects.AxAgent();
this.characterCombo = new System.Windows.Forms.ComboBox();
( ( System.ComponentModel.ISupportInitialize ) ( this.mainAgent ) ).BeginInit();
this.SuspendLayout();
//
// speechTextBox
//
this.speechTextBox.Location = new System.Drawing.Point( 12, 12 );
this.speechTextBox.Multiline = true;
this.speechTextBox.Name = "speechTextBox";
this.speechTextBox.Size = new System.Drawing.Size( 281, 112 );
this.speechTextBox.TabIndex = 0;
//
// actionsCombo
//
this.actionsCombo.FormattingEnabled = true;
this.actionsCombo.Items.AddRange( new object[] {
"Writing",
"Reading",
"Write",
"WriteReturn",
"StartListening",
"LookDown",
"LookLeft",
"LookRight"} );
this.actionsCombo.Location = new System.Drawing.Point( 310, 84 );
this.actionsCombo.Name = "actionsCombo";
this.actionsCombo.Size = new System.Drawing.Size( 117, 21 );
this.actionsCombo.TabIndex = 2;
this.actionsCombo.SelectedIndexChanged += new System.EventHandler( this.actionsCombo_SelectedIndexChanged );
//
// speakButton
//
this.speakButton.Location = new System.Drawing.Point( 310, 39 );
this.speakButton.Name = "speakButton";
this.speakButton.Size = new System.Drawing.Size( 117, 39 );
this.speakButton.TabIndex = 4;
this.speakButton.Text = "Speak";
this.speakButton.Click += new System.EventHandler( this.speakButton_Click );
//
// mainAgent
//
this.mainAgent.Enabled = true;
this.mainAgent.Location = new System.Drawing.Point( 299, 111 );
this.mainAgent.Name = "mainAgent";
this.mainAgent.OcxState = ( ( System.Windows.Forms.AxHost.State ) ( resources.GetObject( "mainAgent.OcxState" ) ) );
this.mainAgent.Size = new System.Drawing.Size( 32, 32 );
this.mainAgent.TabIndex = 0;
this.mainAgent.Text = "axAgent1";
this.mainAgent.Command += new AxAgentObjects._AgentEvents_CommandEventHandler( this.mainAgent_Command );
this.mainAgent.ClickEvent += new AxAgentObjects._AgentEvents_ClickEventHandler( this.mainAgent_ClickEvent );
//
// characterCombo
//
this.characterCombo.FormattingEnabled = true;
this.characterCombo.Items.AddRange( new object[] {
"Genie",
"Merlin",
"Peedy",
"Robby"} );
this.characterCombo.Location = new System.Drawing.Point( 310, 12 );
this.characterCombo.Name = "characterCombo";
this.characterCombo.Size = new System.Drawing.Size( 117, 21 );
this.characterCombo.TabIndex = 5;
this.characterCombo.SelectedIndexChanged += new System.EventHandler( this.characterCombo_SelectedIndexChanged );
//
// Agent
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 439, 136 );
this.Controls.Add( this.characterCombo );
this.Controls.Add( this.mainAgent );
this.Controls.Add( this.speakButton );
this.Controls.Add( this.actionsCombo );
this.Controls.Add( this.speechTextBox );
this.Name = "Agent";
this.Text = "Microsoft Agent";
( ( System.ComponentModel.ISupportInitialize ) ( this.mainAgent ) ).EndInit();
this.ResumeLayout( false );
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox speechTextBox;
private System.Windows.Forms.ComboBox actionsCombo;
private System.Windows.Forms.Button speakButton;
private AxAgentObjects.AxAgent mainAgent;
private System.Windows.Forms.ComboBox characterCombo;
}