Form1.Designer.cs
资源名称:MyDictApp.rar [点击查看]
上传用户:china_pc
上传日期:2022-07-29
资源大小:495k
文件大小:7k
源码类别:
其他
开发平台:
Visual C++
- namespace MyDictApp
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.searchBtn = new System.Windows.Forms.Button();
- this.wordBox = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.copyBtn = new System.Windows.Forms.Button();
- this.outBtn = new System.Windows.Forms.Button();
- this.aboutBtn = new System.Windows.Forms.Button();
- this.quitBtn = new System.Windows.Forms.Button();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.sayBtn = new System.Windows.Forms.Button();
- this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.SuspendLayout();
- //
- // searchBtn
- //
- this.searchBtn.Location = new System.Drawing.Point(168, 4);
- this.searchBtn.Name = "searchBtn";
- this.searchBtn.Size = new System.Drawing.Size(49, 23);
- this.searchBtn.TabIndex = 0;
- this.searchBtn.Text = "Search";
- this.searchBtn.UseVisualStyleBackColor = true;
- this.searchBtn.Click += new System.EventHandler(this.searchBtn_Click);
- //
- // wordBox
- //
- this.wordBox.Location = new System.Drawing.Point(41, 4);
- this.wordBox.Name = "wordBox";
- this.wordBox.Size = new System.Drawing.Size(93, 21);
- this.wordBox.TabIndex = 1;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(6, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(35, 12);
- this.label1.TabIndex = 2;
- this.label1.Text = "Word:";
- //
- // copyBtn
- //
- this.copyBtn.Location = new System.Drawing.Point(8, 208);
- this.copyBtn.Name = "copyBtn";
- this.copyBtn.Size = new System.Drawing.Size(48, 23);
- this.copyBtn.TabIndex = 4;
- this.copyBtn.Text = "Copy";
- this.copyBtn.UseVisualStyleBackColor = true;
- this.copyBtn.Click += new System.EventHandler(this.copyBtn_Click);
- //
- // outBtn
- //
- this.outBtn.Location = new System.Drawing.Point(62, 208);
- this.outBtn.Name = "outBtn";
- this.outBtn.Size = new System.Drawing.Size(48, 23);
- this.outBtn.TabIndex = 5;
- this.outBtn.Text = "Out";
- this.outBtn.UseVisualStyleBackColor = true;
- this.outBtn.Click += new System.EventHandler(this.outBtn_Click);
- //
- // aboutBtn
- //
- this.aboutBtn.Location = new System.Drawing.Point(116, 208);
- this.aboutBtn.Name = "aboutBtn";
- this.aboutBtn.Size = new System.Drawing.Size(48, 23);
- this.aboutBtn.TabIndex = 6;
- this.aboutBtn.Text = "About";
- this.aboutBtn.UseVisualStyleBackColor = true;
- this.aboutBtn.Click += new System.EventHandler(this.aboutBtn_Click);
- //
- // quitBtn
- //
- this.quitBtn.Location = new System.Drawing.Point(170, 208);
- this.quitBtn.Name = "quitBtn";
- this.quitBtn.Size = new System.Drawing.Size(44, 23);
- this.quitBtn.TabIndex = 7;
- this.quitBtn.Text = "Quit";
- this.quitBtn.UseVisualStyleBackColor = true;
- this.quitBtn.Click += new System.EventHandler(this.quitBtn_Click);
- //
- // richTextBox1
- //
- this.richTextBox1.Location = new System.Drawing.Point(8, 33);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.ReadOnly = true;
- this.richTextBox1.Size = new System.Drawing.Size(209, 169);
- this.richTextBox1.TabIndex = 8;
- this.richTextBox1.Text = "";
- //
- // sayBtn
- //
- this.sayBtn.Location = new System.Drawing.Point(135, 4);
- this.sayBtn.Name = "sayBtn";
- this.sayBtn.Size = new System.Drawing.Size(33, 23);
- this.sayBtn.TabIndex = 9;
- this.sayBtn.Text = "Say";
- this.sayBtn.UseVisualStyleBackColor = true;
- this.sayBtn.Click += new System.EventHandler(this.sayBtn_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(226, 242);
- this.Controls.Add(this.sayBtn);
- this.Controls.Add(this.richTextBox1);
- this.Controls.Add(this.quitBtn);
- this.Controls.Add(this.aboutBtn);
- this.Controls.Add(this.outBtn);
- this.Controls.Add(this.copyBtn);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.wordBox);
- this.Controls.Add(this.searchBtn);
- this.Name = "Form1";
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button searchBtn;
- private System.Windows.Forms.TextBox wordBox;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button copyBtn;
- private System.Windows.Forms.Button outBtn;
- private System.Windows.Forms.Button aboutBtn;
- private System.Windows.Forms.Button quitBtn;
- private System.Windows.Forms.RichTextBox richTextBox1;
- private System.Windows.Forms.Button sayBtn;
- private System.Windows.Forms.SaveFileDialog saveFileDialog1;
- }
- }