root/lang/csharp/Translater/Form1.Designer.cs

Revision 15264, 3.4 kB (checked in by seasons, 6 months ago)

翻訳エンジンプラグイン作成サンプル
実際に使ってみたい人は、bin/Debug/Jisho.exeを実行するとよろし。

Line 
1namespace Jisho
2{
3    partial class Form1
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Windows Form Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.wordTextBox = new System.Windows.Forms.TextBox();
32            this.engineLists = new System.Windows.Forms.ComboBox();
33            this.resultTextBox = new System.Windows.Forms.TextBox();
34            this.SuspendLayout();
35            //
36            // wordTextBox
37            //
38            this.wordTextBox.Location = new System.Drawing.Point(12, 12);
39            this.wordTextBox.Name = "wordTextBox";
40            this.wordTextBox.Size = new System.Drawing.Size(456, 19);
41            this.wordTextBox.TabIndex = 0;
42            this.wordTextBox.Text = "***ここに英訳したい言葉を入れて、Enterキー";
43            //
44            // engineLists
45            //
46            this.engineLists.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
47            this.engineLists.FormattingEnabled = true;
48            this.engineLists.Location = new System.Drawing.Point(12, 37);
49            this.engineLists.Name = "engineLists";
50            this.engineLists.Size = new System.Drawing.Size(456, 20);
51            this.engineLists.TabIndex = 2;
52            this.engineLists.SelectedIndexChanged += new System.EventHandler(this.engineLists_SelectedIndexChanged);
53            //
54            // resultTextBox
55            //
56            this.resultTextBox.Location = new System.Drawing.Point(12, 63);
57            this.resultTextBox.Multiline = true;
58            this.resultTextBox.Name = "resultTextBox";
59            this.resultTextBox.Size = new System.Drawing.Size(456, 266);
60            this.resultTextBox.TabIndex = 3;
61            //
62            // Form1
63            //
64            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
65            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
66            this.ClientSize = new System.Drawing.Size(480, 344);
67            this.Controls.Add(this.resultTextBox);
68            this.Controls.Add(this.engineLists);
69            this.Controls.Add(this.wordTextBox);
70            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
71            this.Name = "Form1";
72            this.Text = "翻訳サンプル(英訳)";
73            this.Load += new System.EventHandler(this.Form1_Load);
74            this.ResumeLayout(false);
75            this.PerformLayout();
76
77        }
78
79        #endregion
80
81        private System.Windows.Forms.TextBox wordTextBox;
82        private System.Windows.Forms.ComboBox engineLists;
83        private System.Windows.Forms.TextBox resultTextBox;
84    }
85}
86
Note: See TracBrowser for help on using the browser.