Form1.Designer.cs
上传用户:cookies0
上传日期:2022-07-28
资源大小:284k
文件大小:4k
源码类别:

语音合成与识别

开发平台:

Visual C++

  1. namespace tryreco
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.button1 = new System.Windows.Forms.Button();
  29.             this.textBox1 = new System.Windows.Forms.TextBox();
  30.             this.button2 = new System.Windows.Forms.Button();
  31.             this.button3 = new System.Windows.Forms.Button();
  32.             this.button4 = new System.Windows.Forms.Button();
  33.             this.SuspendLayout();
  34.             // 
  35.             // button1
  36.             // 
  37.             this.button1.Location = new System.Drawing.Point(12, 201);
  38.             this.button1.Name = "button1";
  39.             this.button1.Size = new System.Drawing.Size(75, 23);
  40.             this.button1.TabIndex = 0;
  41.             this.button1.Text = "听写";
  42.             this.button1.UseVisualStyleBackColor = true;
  43.             this.button1.Click += new System.EventHandler(this.button1_Click);
  44.             // 
  45.             // textBox1
  46.             // 
  47.             this.textBox1.Location = new System.Drawing.Point(12, 12);
  48.             this.textBox1.Multiline = true;
  49.             this.textBox1.Name = "textBox1";
  50.             this.textBox1.Size = new System.Drawing.Size(268, 168);
  51.             this.textBox1.TabIndex = 1;
  52.             // 
  53.             // button2
  54.             // 
  55.             this.button2.Location = new System.Drawing.Point(105, 201);
  56.             this.button2.Name = "button2";
  57.             this.button2.Size = new System.Drawing.Size(75, 25);
  58.             this.button2.TabIndex = 2;
  59.             this.button2.Text = "停止";
  60.             this.button2.UseVisualStyleBackColor = true;
  61.             this.button2.Click += new System.EventHandler(this.button2_Click_1);
  62.             // 
  63.             // button3
  64.             // 
  65.             this.button3.Location = new System.Drawing.Point(205, 201);
  66.             this.button3.Name = "button3";
  67.             this.button3.Size = new System.Drawing.Size(75, 23);
  68.             this.button3.TabIndex = 3;
  69.             this.button3.Text = "阅读";
  70.             this.button3.UseVisualStyleBackColor = true;
  71.             this.button3.Click += new System.EventHandler(this.button3_Click);
  72.             // 
  73.             // button4
  74.             // 
  75.             this.button4.Location = new System.Drawing.Point(12, 238);
  76.             this.button4.Name = "button4";
  77.             this.button4.Size = new System.Drawing.Size(75, 23);
  78.             this.button4.TabIndex = 4;
  79.             this.button4.Text = "存为WAV";
  80.             this.button4.UseVisualStyleBackColor = true;
  81.             this.button4.Click += new System.EventHandler(this.button4_Click);
  82.             // 
  83.             // Form1
  84.             // 
  85.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  86.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87.             this.ClientSize = new System.Drawing.Size(292, 347);
  88.             this.Controls.Add(this.button4);
  89.             this.Controls.Add(this.button3);
  90.             this.Controls.Add(this.button2);
  91.             this.Controls.Add(this.textBox1);
  92.             this.Controls.Add(this.button1);
  93.             this.Name = "Form1";
  94.             this.Text = "Form1";
  95.             this.Load += new System.EventHandler(this.Form1_Load);
  96.             this.ResumeLayout(false);
  97.             this.PerformLayout();
  98.         }
  99.         #endregion
  100.         private System.Windows.Forms.Button button1;
  101.         private System.Windows.Forms.TextBox textBox1;
  102.         private System.Windows.Forms.Button button2;
  103.         private System.Windows.Forms.Button button3;
  104.         private System.Windows.Forms.Button button4;
  105.     }
  106. }