PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSWebBrowserWithProxy/MainForm.Designer.cs

#
C# | 212 lines | 153 code | 9 blank | 50 comment | 3 complexity | c2b45633490b854064f75ae9b315ab3f MD5 | raw file
  1. using System.Security.Permissions;
  2. namespace CSWebBrowserWithProxy
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. [PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
  28. private void InitializeComponent()
  29. {
  30. this.pnlMenu = new System.Windows.Forms.Panel();
  31. this.cmbProxy = new System.Windows.Forms.ComboBox();
  32. this.radUseProxy = new System.Windows.Forms.RadioButton();
  33. this.tbUrl = new System.Windows.Forms.TextBox();
  34. this.radIEProxy = new System.Windows.Forms.RadioButton();
  35. this.btnNavigate = new System.Windows.Forms.Button();
  36. this.pnlBrowser = new System.Windows.Forms.Panel();
  37. this.pnlToolbar = new System.Windows.Forms.Panel();
  38. this.pnlStatus = new System.Windows.Forms.Panel();
  39. this.lbStatus = new System.Windows.Forms.Label();
  40. this.prgBrowserProcess = new System.Windows.Forms.ProgressBar();
  41. this.wbcSample = new CSWebBrowserWithProxy.WebBrowserWithProxy();
  42. this.pnlMenu.SuspendLayout();
  43. this.pnlBrowser.SuspendLayout();
  44. this.pnlToolbar.SuspendLayout();
  45. this.pnlStatus.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // pnlMenu
  49. //
  50. this.pnlMenu.Controls.Add(this.cmbProxy);
  51. this.pnlMenu.Controls.Add(this.radUseProxy);
  52. this.pnlMenu.Controls.Add(this.tbUrl);
  53. this.pnlMenu.Controls.Add(this.radIEProxy);
  54. this.pnlMenu.Controls.Add(this.btnNavigate);
  55. this.pnlMenu.Dock = System.Windows.Forms.DockStyle.Top;
  56. this.pnlMenu.Location = new System.Drawing.Point(0, 0);
  57. this.pnlMenu.Name = "pnlMenu";
  58. this.pnlMenu.Size = new System.Drawing.Size(824, 54);
  59. this.pnlMenu.TabIndex = 1;
  60. //
  61. // cmbProxy
  62. //
  63. this.cmbProxy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  64. this.cmbProxy.FormattingEnabled = true;
  65. this.cmbProxy.Items.AddRange(new object[] {
  66. "First Browser",
  67. "Second Browser"});
  68. this.cmbProxy.Location = new System.Drawing.Point(236, 23);
  69. this.cmbProxy.Name = "cmbProxy";
  70. this.cmbProxy.Size = new System.Drawing.Size(121, 21);
  71. this.cmbProxy.TabIndex = 10;
  72. //
  73. // radUseProxy
  74. //
  75. this.radUseProxy.AutoSize = true;
  76. this.radUseProxy.Location = new System.Drawing.Point(145, 25);
  77. this.radUseProxy.Name = "radUseProxy";
  78. this.radUseProxy.Size = new System.Drawing.Size(85, 17);
  79. this.radUseProxy.TabIndex = 6;
  80. this.radUseProxy.Text = "Proxy Server";
  81. this.radUseProxy.UseVisualStyleBackColor = true;
  82. //
  83. // tbUrl
  84. //
  85. this.tbUrl.Dock = System.Windows.Forms.DockStyle.Top;
  86. this.tbUrl.Location = new System.Drawing.Point(0, 0);
  87. this.tbUrl.Name = "tbUrl";
  88. this.tbUrl.Size = new System.Drawing.Size(824, 20);
  89. this.tbUrl.TabIndex = 5;
  90. this.tbUrl.Text = "http://www.whatsmyip.us/";
  91. //
  92. // radIEProxy
  93. //
  94. this.radIEProxy.AutoSize = true;
  95. this.radIEProxy.Checked = true;
  96. this.radIEProxy.Location = new System.Drawing.Point(12, 25);
  97. this.radIEProxy.Name = "radIEProxy";
  98. this.radIEProxy.Size = new System.Drawing.Size(127, 17);
  99. this.radIEProxy.TabIndex = 4;
  100. this.radIEProxy.TabStop = true;
  101. this.radIEProxy.Text = "Use IE Proxy Settings";
  102. this.radIEProxy.UseVisualStyleBackColor = true;
  103. //
  104. // btnNavigate
  105. //
  106. this.btnNavigate.Location = new System.Drawing.Point(388, 22);
  107. this.btnNavigate.Name = "btnNavigate";
  108. this.btnNavigate.Size = new System.Drawing.Size(79, 23);
  109. this.btnNavigate.TabIndex = 1;
  110. this.btnNavigate.Text = "Go";
  111. this.btnNavigate.UseVisualStyleBackColor = true;
  112. this.btnNavigate.Click += new System.EventHandler(this.btnNavigate_Click);
  113. //
  114. // pnlBrowser
  115. //
  116. this.pnlBrowser.Controls.Add(this.pnlToolbar);
  117. this.pnlBrowser.Controls.Add(this.wbcSample);
  118. this.pnlBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
  119. this.pnlBrowser.Location = new System.Drawing.Point(0, 54);
  120. this.pnlBrowser.Name = "pnlBrowser";
  121. this.pnlBrowser.Size = new System.Drawing.Size(824, 557);
  122. this.pnlBrowser.TabIndex = 2;
  123. //
  124. // pnlToolbar
  125. //
  126. this.pnlToolbar.Controls.Add(this.pnlStatus);
  127. this.pnlToolbar.Controls.Add(this.prgBrowserProcess);
  128. this.pnlToolbar.Dock = System.Windows.Forms.DockStyle.Bottom;
  129. this.pnlToolbar.Location = new System.Drawing.Point(0, 530);
  130. this.pnlToolbar.Name = "pnlToolbar";
  131. this.pnlToolbar.Size = new System.Drawing.Size(824, 27);
  132. this.pnlToolbar.TabIndex = 1;
  133. //
  134. // pnlStatus
  135. //
  136. this.pnlStatus.Controls.Add(this.lbStatus);
  137. this.pnlStatus.Dock = System.Windows.Forms.DockStyle.Left;
  138. this.pnlStatus.Location = new System.Drawing.Point(0, 0);
  139. this.pnlStatus.Name = "pnlStatus";
  140. this.pnlStatus.Size = new System.Drawing.Size(275, 27);
  141. this.pnlStatus.TabIndex = 14;
  142. //
  143. // lbStatus
  144. //
  145. this.lbStatus.AutoSize = true;
  146. this.lbStatus.Location = new System.Drawing.Point(12, 10);
  147. this.lbStatus.Name = "lbStatus";
  148. this.lbStatus.Size = new System.Drawing.Size(0, 13);
  149. this.lbStatus.TabIndex = 13;
  150. //
  151. // prgBrowserProcess
  152. //
  153. this.prgBrowserProcess.Dock = System.Windows.Forms.DockStyle.Fill;
  154. this.prgBrowserProcess.Location = new System.Drawing.Point(0, 0);
  155. this.prgBrowserProcess.Name = "prgBrowserProcess";
  156. this.prgBrowserProcess.Size = new System.Drawing.Size(824, 27);
  157. this.prgBrowserProcess.TabIndex = 12;
  158. //
  159. // wbcSample
  160. //
  161. this.wbcSample.Dock = System.Windows.Forms.DockStyle.Fill;
  162. this.wbcSample.Location = new System.Drawing.Point(0, 0);
  163. this.wbcSample.MinimumSize = new System.Drawing.Size(20, 20);
  164. this.wbcSample.Name = "wbcSample";
  165. this.wbcSample.ScriptErrorsSuppressed = true;
  166. this.wbcSample.Size = new System.Drawing.Size(824, 557);
  167. this.wbcSample.TabIndex = 0;
  168. this.wbcSample.ProgressChanged += new System.Windows.Forms.WebBrowserProgressChangedEventHandler(this.wbcSample_ProgressChanged);
  169. //
  170. // MainForm
  171. //
  172. this.AcceptButton = this.btnNavigate;
  173. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  174. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  175. this.ClientSize = new System.Drawing.Size(824, 611);
  176. this.Controls.Add(this.pnlBrowser);
  177. this.Controls.Add(this.pnlMenu);
  178. this.Name = "MainForm";
  179. this.Text = "CSWebBrowserWithProxy";
  180. this.Load += new System.EventHandler(this.MainForm_Load);
  181. this.pnlMenu.ResumeLayout(false);
  182. this.pnlMenu.PerformLayout();
  183. this.pnlBrowser.ResumeLayout(false);
  184. this.pnlToolbar.ResumeLayout(false);
  185. this.pnlStatus.ResumeLayout(false);
  186. this.pnlStatus.PerformLayout();
  187. this.ResumeLayout(false);
  188. }
  189. #endregion
  190. private System.Windows.Forms.Panel pnlMenu;
  191. private System.Windows.Forms.RadioButton radUseProxy;
  192. private System.Windows.Forms.TextBox tbUrl;
  193. private System.Windows.Forms.RadioButton radIEProxy;
  194. private System.Windows.Forms.Button btnNavigate;
  195. private System.Windows.Forms.ComboBox cmbProxy;
  196. private System.Windows.Forms.Panel pnlBrowser;
  197. private WebBrowserWithProxy wbcSample;
  198. private System.Windows.Forms.Panel pnlToolbar;
  199. private System.Windows.Forms.ProgressBar prgBrowserProcess;
  200. private System.Windows.Forms.Panel pnlStatus;
  201. private System.Windows.Forms.Label lbStatus;
  202. }
  203. }