啊鑫
2024-07-11 afbf8700d137710713db61955879d0f5acb73738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
namespace CSFrameworkV5.Language
{
    partial class frmBaiduTrans
    {
        /// <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.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtLanTo = new System.Windows.Forms.ComboBox();
            this.txtLanFrom = new System.Windows.Forms.ComboBox();
            this.btnTran = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(23, 70);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(65, 20);
            this.label1.TabIndex = 0;
            this.label1.Text = "源语言:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(264, 70);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(79, 20);
            this.label2.TabIndex = 0;
            this.label2.Text = "目标语言:";
            // 
            // txtLanTo
            // 
            this.txtLanTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.txtLanTo.FormattingEnabled = true;
            this.txtLanTo.Items.AddRange(new object[] {
            "中文繁体",
            "英文",
            "越南文"});
            this.txtLanTo.Location = new System.Drawing.Point(349, 68);
            this.txtLanTo.Name = "txtLanTo";
            this.txtLanTo.Size = new System.Drawing.Size(145, 27);
            this.txtLanTo.TabIndex = 1;
            // 
            // txtLanFrom
            // 
            this.txtLanFrom.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.txtLanFrom.Enabled = false;
            this.txtLanFrom.FormattingEnabled = true;
            this.txtLanFrom.Items.AddRange(new object[] {
            "中文简体"});
            this.txtLanFrom.Location = new System.Drawing.Point(94, 68);
            this.txtLanFrom.Name = "txtLanFrom";
            this.txtLanFrom.Size = new System.Drawing.Size(145, 27);
            this.txtLanFrom.TabIndex = 1;
            // 
            // btnTran
            // 
            this.btnTran.Location = new System.Drawing.Point(195, 183);
            this.btnTran.Name = "btnTran";
            this.btnTran.Size = new System.Drawing.Size(131, 39);
            this.btnTran.TabIndex = 2;
            this.btnTran.Text = "开始翻译";
            this.btnTran.UseVisualStyleBackColor = true;
            this.btnTran.Click += new System.EventHandler(this.btnTran_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.txtLanTo);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.txtLanFrom);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(521, 161);
            this.groupBox1.TabIndex = 3;
            this.groupBox1.TabStop = false;
            // 
            // frmBaiduTrans
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(521, 264);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.btnTran);
            this.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frmBaiduTrans";
            this.Text = "百度翻译接口";
            this.Load += new System.EventHandler(this.frmBaiduTrans_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);
 
        }
 
        #endregion
 
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.ComboBox txtLanTo;
        private System.Windows.Forms.ComboBox txtLanFrom;
        private System.Windows.Forms.Button btnTran;
        private System.Windows.Forms.GroupBox groupBox1;
    }
}