Develop and Download Open Source Software

Browse Subversion Repository

Contents of /FindWindow.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (show annotations) (download)
Sun Jan 16 11:46:21 2011 UTC (13 years, 1 month ago) by aqua877
File size: 5781 byte(s)
Fixed bug for posting comment.
Implemented find window.
1 namespace Aqua877.WinApp.IronLivetube
2 {
3 partial class FindWindow
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.label1 = new System.Windows.Forms.Label();
32 this.IsIgnoreCaseCheckBox = new System.Windows.Forms.CheckBox();
33 this.IsFindWithRegularExpressionsCheckBox = new System.Windows.Forms.CheckBox();
34 this.FindNextButton = new System.Windows.Forms.Button();
35 this.FindPatternTextBox = new System.Windows.Forms.TextBox();
36 this.FindErrorLabel = new System.Windows.Forms.Label();
37 this.SuspendLayout();
38 //
39 // label1
40 //
41 this.label1.AutoSize = true;
42 this.label1.Location = new System.Drawing.Point(12, 15);
43 this.label1.Name = "label1";
44 this.label1.Size = new System.Drawing.Size(92, 18);
45 this.label1.TabIndex = 0;
46 this.label1.Text = "検索する文字列";
47 //
48 // IsIgnoreCaseCheckBox
49 //
50 this.IsIgnoreCaseCheckBox.AutoSize = true;
51 this.IsIgnoreCaseCheckBox.Location = new System.Drawing.Point(110, 43);
52 this.IsIgnoreCaseCheckBox.Name = "IsIgnoreCaseCheckBox";
53 this.IsIgnoreCaseCheckBox.Size = new System.Drawing.Size(123, 22);
54 this.IsIgnoreCaseCheckBox.TabIndex = 2;
55 this.IsIgnoreCaseCheckBox.Text = "英大小文字を区別";
56 this.IsIgnoreCaseCheckBox.UseVisualStyleBackColor = true;
57 this.IsIgnoreCaseCheckBox.CheckedChanged += new System.EventHandler(this.IsIgnoreCaseCheckBox_CheckedChanged);
58 //
59 // IsFindWithRegularExpressionsCheckBox
60 //
61 this.IsFindWithRegularExpressionsCheckBox.AutoSize = true;
62 this.IsFindWithRegularExpressionsCheckBox.Location = new System.Drawing.Point(239, 43);
63 this.IsFindWithRegularExpressionsCheckBox.Name = "IsFindWithRegularExpressionsCheckBox";
64 this.IsFindWithRegularExpressionsCheckBox.Size = new System.Drawing.Size(111, 22);
65 this.IsFindWithRegularExpressionsCheckBox.TabIndex = 3;
66 this.IsFindWithRegularExpressionsCheckBox.Text = "正規表現を使用";
67 this.IsFindWithRegularExpressionsCheckBox.UseVisualStyleBackColor = true;
68 this.IsFindWithRegularExpressionsCheckBox.CheckedChanged += new System.EventHandler(this.IsFindWithRegularExpressionsCheckBox_CheckedChanged);
69 //
70 // FindNextButton
71 //
72 this.FindNextButton.Location = new System.Drawing.Point(387, 86);
73 this.FindNextButton.Name = "FindNextButton";
74 this.FindNextButton.Size = new System.Drawing.Size(95, 25);
75 this.FindNextButton.TabIndex = 4;
76 this.FindNextButton.Text = "検索(&F)";
77 this.FindNextButton.UseVisualStyleBackColor = true;
78 this.FindNextButton.Click += new System.EventHandler(this.FindNextButton_Click);
79 //
80 // FindPatternTextBox
81 //
82 this.FindPatternTextBox.Location = new System.Drawing.Point(110, 12);
83 this.FindPatternTextBox.Name = "FindPatternTextBox";
84 this.FindPatternTextBox.Size = new System.Drawing.Size(372, 25);
85 this.FindPatternTextBox.TabIndex = 1;
86 //
87 // FindErrorLabel
88 //
89 this.FindErrorLabel.AutoSize = true;
90 this.FindErrorLabel.ForeColor = System.Drawing.Color.Red;
91 this.FindErrorLabel.Image = global::Aqua877.WinApp.IronLivetube.Properties.Resources.Error_16x16;
92 this.FindErrorLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
93 this.FindErrorLabel.Location = new System.Drawing.Point(107, 68);
94 this.FindErrorLabel.Name = "FindErrorLabel";
95 this.FindErrorLabel.RightToLeft = System.Windows.Forms.RightToLeft.No;
96 this.FindErrorLabel.Size = new System.Drawing.Size(216, 18);
97 this.FindErrorLabel.TabIndex = 7;
98 this.FindErrorLabel.Text = " 検索する文字列を入力してください";
99 this.FindErrorLabel.Visible = false;
100 //
101 // FindWindow
102 //
103 this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 18F);
104 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105 this.ClientSize = new System.Drawing.Size(494, 123);
106 this.Controls.Add(this.FindErrorLabel);
107 this.Controls.Add(this.FindNextButton);
108 this.Controls.Add(this.IsFindWithRegularExpressionsCheckBox);
109 this.Controls.Add(this.IsIgnoreCaseCheckBox);
110 this.Controls.Add(this.FindPatternTextBox);
111 this.Controls.Add(this.label1);
112 this.Font = new System.Drawing.Font("メイリオ", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
113 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
114 this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
115 this.MaximizeBox = false;
116 this.MinimizeBox = false;
117 this.Name = "FindWindow";
118 this.ShowIcon = false;
119 this.ShowInTaskbar = false;
120 this.Text = "検索";
121 this.TopMost = true;
122 this.ResumeLayout(false);
123 this.PerformLayout();
124
125 }
126
127 #endregion
128
129 private System.Windows.Forms.Label label1;
130 private System.Windows.Forms.CheckBox IsIgnoreCaseCheckBox;
131 private System.Windows.Forms.CheckBox IsFindWithRegularExpressionsCheckBox;
132 private System.Windows.Forms.TextBox FindPatternTextBox;
133 private System.Windows.Forms.Button FindNextButton;
134 private System.Windows.Forms.Label FindErrorLabel;
135 }
136 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26