fork download
  1. namespace WindowsFormsApplication1
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必要なデザイナー変数です。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// 使用中のリソースをすべてクリーンアップします。
  12. /// </summary>
  13. /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は 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 フォーム デザイナーで生成されたコード
  24.  
  25. /// <summary>
  26. /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
  27. /// コード エディターで変更しないでください。
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  32. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  33. this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
  34. this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  35. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  36. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  37. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  38. this.tabControl1 = new System.Windows.Forms.TabControl();
  39. this.tabPageWeb = new System.Windows.Forms.TabPage();
  40. this.tabPageInnerText = new System.Windows.Forms.TabPage();
  41. this.tabPageOuterText = new System.Windows.Forms.TabPage();
  42. this.webBrowser1 = new System.Windows.Forms.WebBrowser();
  43. this.treeView1 = new System.Windows.Forms.TreeView();
  44. this.textBox1 = new System.Windows.Forms.TextBox();
  45. this.tabPageInnerHtml = new System.Windows.Forms.TabPage();
  46. this.tabPageOuterHtml = new System.Windows.Forms.TabPage();
  47. this.textBoxInnerText = new System.Windows.Forms.TextBox();
  48. this.textBoxInnerHtml = new System.Windows.Forms.TextBox();
  49. this.textBoxOuterText = new System.Windows.Forms.TextBox();
  50. this.textBoxOuterHtml = new System.Windows.Forms.TextBox();
  51. this.toolStrip1.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  53. this.splitContainer1.Panel1.SuspendLayout();
  54. this.splitContainer1.Panel2.SuspendLayout();
  55. this.splitContainer1.SuspendLayout();
  56. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  57. this.splitContainer2.Panel1.SuspendLayout();
  58. this.splitContainer2.Panel2.SuspendLayout();
  59. this.splitContainer2.SuspendLayout();
  60. this.tabControl1.SuspendLayout();
  61. this.tabPageWeb.SuspendLayout();
  62. this.tabPageInnerText.SuspendLayout();
  63. this.tabPageOuterText.SuspendLayout();
  64. this.tabPageInnerHtml.SuspendLayout();
  65. this.tabPageOuterHtml.SuspendLayout();
  66. this.SuspendLayout();
  67. //
  68. // toolStrip1
  69. //
  70. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  71. this.toolStripTextBox1,
  72. this.toolStripButton1});
  73. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  74. this.toolStrip1.Margin = new System.Windows.Forms.Padding(4);
  75. this.toolStrip1.Name = "toolStrip1";
  76. this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  77. this.toolStrip1.Size = new System.Drawing.Size(938, 25);
  78. this.toolStrip1.TabIndex = 0;
  79. this.toolStrip1.Text = "toolStrip1";
  80. //
  81. // toolStripTextBox1
  82. //
  83. this.toolStripTextBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.HistoryList;
  84. this.toolStripTextBox1.AutoSize = false;
  85. this.toolStripTextBox1.Name = "toolStripTextBox1";
  86. this.toolStripTextBox1.Size = new System.Drawing.Size(300, 20);
  87. //
  88. // toolStripButton1
  89. //
  90. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  91. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  92. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  93. this.toolStripButton1.Name = "toolStripButton1";
  94. this.toolStripButton1.Size = new System.Drawing.Size(30, 22);
  95. this.toolStripButton1.Text = "GO";
  96. this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
  97. //
  98. // statusStrip1
  99. //
  100. this.statusStrip1.Location = new System.Drawing.Point(0, 556);
  101. this.statusStrip1.Name = "statusStrip1";
  102. this.statusStrip1.Size = new System.Drawing.Size(938, 22);
  103. this.statusStrip1.TabIndex = 1;
  104. this.statusStrip1.Text = "statusStrip1";
  105. //
  106. // splitContainer1
  107. //
  108. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  109. this.splitContainer1.Location = new System.Drawing.Point(0, 25);
  110. this.splitContainer1.Name = "splitContainer1";
  111. //
  112. // splitContainer1.Panel1
  113. //
  114. this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
  115. //
  116. // splitContainer1.Panel2
  117. //
  118. this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
  119. this.splitContainer1.Size = new System.Drawing.Size(938, 531);
  120. this.splitContainer1.SplitterDistance = 222;
  121. this.splitContainer1.TabIndex = 2;
  122. //
  123. // splitContainer2
  124. //
  125. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  126. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  127. this.splitContainer2.Name = "splitContainer2";
  128. this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
  129. //
  130. // splitContainer2.Panel1
  131. //
  132. this.splitContainer2.Panel1.Controls.Add(this.treeView1);
  133. //
  134. // splitContainer2.Panel2
  135. //
  136. this.splitContainer2.Panel2.Controls.Add(this.textBox1);
  137. this.splitContainer2.Size = new System.Drawing.Size(222, 531);
  138. this.splitContainer2.SplitterDistance = 347;
  139. this.splitContainer2.TabIndex = 0;
  140. //
  141. // tabControl1
  142. //
  143. this.tabControl1.Controls.Add(this.tabPageWeb);
  144. this.tabControl1.Controls.Add(this.tabPageInnerText);
  145. this.tabControl1.Controls.Add(this.tabPageOuterText);
  146. this.tabControl1.Controls.Add(this.tabPageInnerHtml);
  147. this.tabControl1.Controls.Add(this.tabPageOuterHtml);
  148. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  149. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  150. this.tabControl1.Name = "tabControl1";
  151. this.tabControl1.SelectedIndex = 0;
  152. this.tabControl1.Size = new System.Drawing.Size(712, 531);
  153. this.tabControl1.TabIndex = 0;
  154. //
  155. // tabPageWeb
  156. //
  157. this.tabPageWeb.Controls.Add(this.webBrowser1);
  158. this.tabPageWeb.Location = new System.Drawing.Point(4, 22);
  159. this.tabPageWeb.Name = "tabPageWeb";
  160. this.tabPageWeb.Padding = new System.Windows.Forms.Padding(3);
  161. this.tabPageWeb.Size = new System.Drawing.Size(704, 505);
  162. this.tabPageWeb.TabIndex = 0;
  163. this.tabPageWeb.Text = "web";
  164. this.tabPageWeb.UseVisualStyleBackColor = true;
  165. //
  166. // tabPageInnerText
  167. //
  168. this.tabPageInnerText.Controls.Add(this.textBoxInnerText);
  169. this.tabPageInnerText.Location = new System.Drawing.Point(4, 22);
  170. this.tabPageInnerText.Name = "tabPageInnerText";
  171. this.tabPageInnerText.Padding = new System.Windows.Forms.Padding(3);
  172. this.tabPageInnerText.Size = new System.Drawing.Size(704, 505);
  173. this.tabPageInnerText.TabIndex = 1;
  174. this.tabPageInnerText.Text = "InnerText";
  175. this.tabPageInnerText.UseVisualStyleBackColor = true;
  176. //
  177. // tabPageOuterText
  178. //
  179. this.tabPageOuterText.Controls.Add(this.textBoxOuterText);
  180. this.tabPageOuterText.Location = new System.Drawing.Point(4, 22);
  181. this.tabPageOuterText.Name = "tabPageOuterText";
  182. this.tabPageOuterText.Padding = new System.Windows.Forms.Padding(3);
  183. this.tabPageOuterText.Size = new System.Drawing.Size(704, 505);
  184. this.tabPageOuterText.TabIndex = 2;
  185. this.tabPageOuterText.Text = "OuterText";
  186. this.tabPageOuterText.UseVisualStyleBackColor = true;
  187. //
  188. // webBrowser1
  189. //
  190. this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
  191. this.webBrowser1.Location = new System.Drawing.Point(3, 3);
  192. this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  193. this.webBrowser1.Name = "webBrowser1";
  194. this.webBrowser1.Size = new System.Drawing.Size(698, 499);
  195. this.webBrowser1.TabIndex = 0;
  196. //
  197. // treeView1
  198. //
  199. this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
  200. this.treeView1.Location = new System.Drawing.Point(0, 0);
  201. this.treeView1.Name = "treeView1";
  202. this.treeView1.Size = new System.Drawing.Size(222, 347);
  203. this.treeView1.TabIndex = 0;
  204. //
  205. // textBox1
  206. //
  207. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  208. this.textBox1.Location = new System.Drawing.Point(0, 0);
  209. this.textBox1.Multiline = true;
  210. this.textBox1.Name = "textBox1";
  211. this.textBox1.Size = new System.Drawing.Size(222, 180);
  212. this.textBox1.TabIndex = 0;
  213. //
  214. // tabPageInnerHtml
  215. //
  216. this.tabPageInnerHtml.Controls.Add(this.textBoxInnerHtml);
  217. this.tabPageInnerHtml.Location = new System.Drawing.Point(4, 22);
  218. this.tabPageInnerHtml.Name = "tabPageInnerHtml";
  219. this.tabPageInnerHtml.Padding = new System.Windows.Forms.Padding(3);
  220. this.tabPageInnerHtml.Size = new System.Drawing.Size(704, 505);
  221. this.tabPageInnerHtml.TabIndex = 3;
  222. this.tabPageInnerHtml.Text = "InnerHtml";
  223. this.tabPageInnerHtml.UseVisualStyleBackColor = true;
  224. //
  225. // tabPageOuterHtml
  226. //
  227. this.tabPageOuterHtml.Controls.Add(this.textBoxOuterHtml);
  228. this.tabPageOuterHtml.Location = new System.Drawing.Point(4, 22);
  229. this.tabPageOuterHtml.Name = "tabPageOuterHtml";
  230. this.tabPageOuterHtml.Padding = new System.Windows.Forms.Padding(3);
  231. this.tabPageOuterHtml.Size = new System.Drawing.Size(704, 505);
  232. this.tabPageOuterHtml.TabIndex = 4;
  233. this.tabPageOuterHtml.Text = "OuterHtml";
  234. this.tabPageOuterHtml.UseVisualStyleBackColor = true;
  235. //
  236. // textBoxInnerText
  237. //
  238. this.textBoxInnerText.Dock = System.Windows.Forms.DockStyle.Fill;
  239. this.textBoxInnerText.Location = new System.Drawing.Point(3, 3);
  240. this.textBoxInnerText.Multiline = true;
  241. this.textBoxInnerText.Name = "textBoxInnerText";
  242. this.textBoxInnerText.Size = new System.Drawing.Size(698, 499);
  243. this.textBoxInnerText.TabIndex = 0;
  244. //
  245. // textBoxInnerHtml
  246. //
  247. this.textBoxInnerHtml.Dock = System.Windows.Forms.DockStyle.Fill;
  248. this.textBoxInnerHtml.Location = new System.Drawing.Point(3, 3);
  249. this.textBoxInnerHtml.Multiline = true;
  250. this.textBoxInnerHtml.Name = "textBoxInnerHtml";
  251. this.textBoxInnerHtml.Size = new System.Drawing.Size(698, 499);
  252. this.textBoxInnerHtml.TabIndex = 0;
  253. //
  254. // textBoxOuterText
  255. //
  256. this.textBoxOuterText.Dock = System.Windows.Forms.DockStyle.Fill;
  257. this.textBoxOuterText.Location = new System.Drawing.Point(3, 3);
  258. this.textBoxOuterText.Multiline = true;
  259. this.textBoxOuterText.Name = "textBoxOuterText";
  260. this.textBoxOuterText.Size = new System.Drawing.Size(698, 499);
  261. this.textBoxOuterText.TabIndex = 0;
  262. //
  263. // textBoxOuterHtml
  264. //
  265. this.textBoxOuterHtml.Dock = System.Windows.Forms.DockStyle.Fill;
  266. this.textBoxOuterHtml.Location = new System.Drawing.Point(3, 3);
  267. this.textBoxOuterHtml.Multiline = true;
  268. this.textBoxOuterHtml.Name = "textBoxOuterHtml";
  269. this.textBoxOuterHtml.Size = new System.Drawing.Size(698, 499);
  270. this.textBoxOuterHtml.TabIndex = 0;
  271. //
  272. // Form1
  273. //
  274. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  275. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  276. this.ClientSize = new System.Drawing.Size(938, 578);
  277. this.Controls.Add(this.splitContainer1);
  278. this.Controls.Add(this.statusStrip1);
  279. this.Controls.Add(this.toolStrip1);
  280. this.Name = "Form1";
  281. this.Text = "Form1";
  282. this.Load += new System.EventHandler(this.Form1_Load);
  283. this.toolStrip1.ResumeLayout(false);
  284. this.toolStrip1.PerformLayout();
  285. this.splitContainer1.Panel1.ResumeLayout(false);
  286. this.splitContainer1.Panel2.ResumeLayout(false);
  287. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  288. this.splitContainer1.ResumeLayout(false);
  289. this.splitContainer2.Panel1.ResumeLayout(false);
  290. this.splitContainer2.Panel2.ResumeLayout(false);
  291. this.splitContainer2.Panel2.PerformLayout();
  292. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  293. this.splitContainer2.ResumeLayout(false);
  294. this.tabControl1.ResumeLayout(false);
  295. this.tabPageWeb.ResumeLayout(false);
  296. this.tabPageInnerText.ResumeLayout(false);
  297. this.tabPageInnerText.PerformLayout();
  298. this.tabPageOuterText.ResumeLayout(false);
  299. this.tabPageOuterText.PerformLayout();
  300. this.tabPageInnerHtml.ResumeLayout(false);
  301. this.tabPageInnerHtml.PerformLayout();
  302. this.tabPageOuterHtml.ResumeLayout(false);
  303. this.tabPageOuterHtml.PerformLayout();
  304. this.ResumeLayout(false);
  305. this.PerformLayout();
  306.  
  307. }
  308.  
  309. #endregion
  310.  
  311. private System.Windows.Forms.ToolStrip toolStrip1;
  312. private System.Windows.Forms.StatusStrip statusStrip1;
  313. private System.Windows.Forms.ToolStripButton toolStripButton1;
  314. private System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
  315. private System.Windows.Forms.SplitContainer splitContainer1;
  316. private System.Windows.Forms.SplitContainer splitContainer2;
  317. private System.Windows.Forms.TreeView treeView1;
  318. private System.Windows.Forms.TextBox textBox1;
  319. private System.Windows.Forms.TabControl tabControl1;
  320. private System.Windows.Forms.TabPage tabPageWeb;
  321. private System.Windows.Forms.WebBrowser webBrowser1;
  322. private System.Windows.Forms.TabPage tabPageInnerText;
  323. private System.Windows.Forms.TabPage tabPageOuterText;
  324. private System.Windows.Forms.TabPage tabPageInnerHtml;
  325. private System.Windows.Forms.TabPage tabPageOuterHtml;
  326. private System.Windows.Forms.TextBox textBoxInnerText;
  327. private System.Windows.Forms.TextBox textBoxOuterText;
  328. private System.Windows.Forms.TextBox textBoxInnerHtml;
  329. private System.Windows.Forms.TextBox textBoxOuterHtml;
  330.  
  331.  
  332. }
  333. }
  334.  
  335.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty