/Bookmarks/Forms/ConfigurationWindow.Designer.cs

https://bitbucket.org/tkempton/bookmarker · C# · 267 lines · 202 code · 6 blank · 59 comment · 3 complexity · 5978d13b1917463be6c5b58523d0c1fb MD5 · raw file

  1. namespace Bookmarks.Forms
  2. {
  3. partial class ConfigurationWindow
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfigurationWindow));
  30. this.tabControl1 = new System.Windows.Forms.TabControl();
  31. this.tabSites = new System.Windows.Forms.TabPage();
  32. this.btnDownSite = new System.Windows.Forms.Button();
  33. this.btnUpSite = new System.Windows.Forms.Button();
  34. this.btnDelSite = new System.Windows.Forms.Button();
  35. this.btnModSite = new System.Windows.Forms.Button();
  36. this.btnNewSite = new System.Windows.Forms.Button();
  37. this.lstWebsites = new System.Windows.Forms.ListBox();
  38. this.tabBrowsers = new System.Windows.Forms.TabPage();
  39. this.toolTip = new System.Windows.Forms.ToolTip(this.components);
  40. this.btnDownBr = new System.Windows.Forms.Button();
  41. this.btnUpBr = new System.Windows.Forms.Button();
  42. this.btnDelBr = new System.Windows.Forms.Button();
  43. this.btnModBr = new System.Windows.Forms.Button();
  44. this.btnNewBr = new System.Windows.Forms.Button();
  45. this.lstBrowsers = new System.Windows.Forms.ListBox();
  46. this.tabControl1.SuspendLayout();
  47. this.tabSites.SuspendLayout();
  48. this.tabBrowsers.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // tabControl1
  52. //
  53. this.tabControl1.Controls.Add(this.tabSites);
  54. this.tabControl1.Controls.Add(this.tabBrowsers);
  55. this.tabControl1.Location = new System.Drawing.Point(12, 12);
  56. this.tabControl1.Name = "tabControl1";
  57. this.tabControl1.SelectedIndex = 0;
  58. this.tabControl1.Size = new System.Drawing.Size(347, 416);
  59. this.tabControl1.TabIndex = 0;
  60. //
  61. // tabSites
  62. //
  63. this.tabSites.Controls.Add(this.btnDownSite);
  64. this.tabSites.Controls.Add(this.btnUpSite);
  65. this.tabSites.Controls.Add(this.btnDelSite);
  66. this.tabSites.Controls.Add(this.btnModSite);
  67. this.tabSites.Controls.Add(this.btnNewSite);
  68. this.tabSites.Controls.Add(this.lstWebsites);
  69. this.tabSites.Location = new System.Drawing.Point(4, 25);
  70. this.tabSites.Name = "tabSites";
  71. this.tabSites.Padding = new System.Windows.Forms.Padding(3);
  72. this.tabSites.Size = new System.Drawing.Size(339, 387);
  73. this.tabSites.TabIndex = 0;
  74. this.tabSites.Text = "Websites";
  75. this.tabSites.UseVisualStyleBackColor = true;
  76. //
  77. // btnDownSite
  78. //
  79. this.btnDownSite.Enabled = false;
  80. this.btnDownSite.Image = ((System.Drawing.Image)(resources.GetObject("btnDownSite.Image")));
  81. this.btnDownSite.Location = new System.Drawing.Point(297, 48);
  82. this.btnDownSite.Name = "btnDownSite";
  83. this.btnDownSite.Size = new System.Drawing.Size(35, 35);
  84. this.btnDownSite.TabIndex = 5;
  85. this.toolTip.SetToolTip(this.btnDownSite, "Move Down");
  86. this.btnDownSite.UseVisualStyleBackColor = true;
  87. this.btnDownSite.Click += new System.EventHandler(this.btnDownSite_Click);
  88. //
  89. // btnUpSite
  90. //
  91. this.btnUpSite.Enabled = false;
  92. this.btnUpSite.Image = ((System.Drawing.Image)(resources.GetObject("btnUpSite.Image")));
  93. this.btnUpSite.Location = new System.Drawing.Point(297, 7);
  94. this.btnUpSite.Name = "btnUpSite";
  95. this.btnUpSite.Size = new System.Drawing.Size(35, 35);
  96. this.btnUpSite.TabIndex = 4;
  97. this.toolTip.SetToolTip(this.btnUpSite, "Move Up");
  98. this.btnUpSite.UseVisualStyleBackColor = true;
  99. this.btnUpSite.Click += new System.EventHandler(this.btnUpSite_Click);
  100. //
  101. // btnDelSite
  102. //
  103. this.btnDelSite.Enabled = false;
  104. this.btnDelSite.Location = new System.Drawing.Point(201, 355);
  105. this.btnDelSite.Name = "btnDelSite";
  106. this.btnDelSite.Size = new System.Drawing.Size(90, 25);
  107. this.btnDelSite.TabIndex = 3;
  108. this.btnDelSite.Text = "Delete";
  109. this.btnDelSite.UseVisualStyleBackColor = true;
  110. this.btnDelSite.Click += new System.EventHandler(this.btnDelSite_Click);
  111. //
  112. // btnModSite
  113. //
  114. this.btnModSite.Enabled = false;
  115. this.btnModSite.Location = new System.Drawing.Point(105, 355);
  116. this.btnModSite.Name = "btnModSite";
  117. this.btnModSite.Size = new System.Drawing.Size(90, 25);
  118. this.btnModSite.TabIndex = 2;
  119. this.btnModSite.Text = "Modify";
  120. this.btnModSite.UseVisualStyleBackColor = true;
  121. this.btnModSite.Click += new System.EventHandler(this.btnModSite_Click);
  122. //
  123. // btnNewSite
  124. //
  125. this.btnNewSite.Location = new System.Drawing.Point(9, 355);
  126. this.btnNewSite.Name = "btnNewSite";
  127. this.btnNewSite.Size = new System.Drawing.Size(90, 25);
  128. this.btnNewSite.TabIndex = 1;
  129. this.btnNewSite.Text = "New";
  130. this.btnNewSite.UseVisualStyleBackColor = true;
  131. this.btnNewSite.Click += new System.EventHandler(this.btnNewSite_Click);
  132. //
  133. // lstWebsites
  134. //
  135. this.lstWebsites.FormattingEnabled = true;
  136. this.lstWebsites.ItemHeight = 16;
  137. this.lstWebsites.Location = new System.Drawing.Point(7, 7);
  138. this.lstWebsites.Name = "lstWebsites";
  139. this.lstWebsites.Size = new System.Drawing.Size(284, 340);
  140. this.lstWebsites.TabIndex = 0;
  141. this.lstWebsites.SelectedIndexChanged += new System.EventHandler(this.lstWebsites_SelectedIndexChanged);
  142. //
  143. // tabBrowsers
  144. //
  145. this.tabBrowsers.Controls.Add(this.btnDownBr);
  146. this.tabBrowsers.Controls.Add(this.btnUpBr);
  147. this.tabBrowsers.Controls.Add(this.btnDelBr);
  148. this.tabBrowsers.Controls.Add(this.btnModBr);
  149. this.tabBrowsers.Controls.Add(this.btnNewBr);
  150. this.tabBrowsers.Controls.Add(this.lstBrowsers);
  151. this.tabBrowsers.Location = new System.Drawing.Point(4, 25);
  152. this.tabBrowsers.Name = "tabBrowsers";
  153. this.tabBrowsers.Padding = new System.Windows.Forms.Padding(3);
  154. this.tabBrowsers.Size = new System.Drawing.Size(339, 387);
  155. this.tabBrowsers.TabIndex = 1;
  156. this.tabBrowsers.Text = "Browsers";
  157. this.tabBrowsers.UseVisualStyleBackColor = true;
  158. //
  159. // btnDownBr
  160. //
  161. this.btnDownBr.Enabled = false;
  162. this.btnDownBr.Image = ((System.Drawing.Image)(resources.GetObject("btnDownBr.Image")));
  163. this.btnDownBr.Location = new System.Drawing.Point(297, 48);
  164. this.btnDownBr.Name = "btnDownBr";
  165. this.btnDownBr.Size = new System.Drawing.Size(35, 35);
  166. this.btnDownBr.TabIndex = 11;
  167. this.toolTip.SetToolTip(this.btnDownBr, "Move Down");
  168. this.btnDownBr.UseVisualStyleBackColor = true;
  169. this.btnDownBr.Click += new System.EventHandler(this.btnDownBr_Click);
  170. //
  171. // btnUpBr
  172. //
  173. this.btnUpBr.Enabled = false;
  174. this.btnUpBr.Image = ((System.Drawing.Image)(resources.GetObject("btnUpBr.Image")));
  175. this.btnUpBr.Location = new System.Drawing.Point(297, 7);
  176. this.btnUpBr.Name = "btnUpBr";
  177. this.btnUpBr.Size = new System.Drawing.Size(35, 35);
  178. this.btnUpBr.TabIndex = 10;
  179. this.toolTip.SetToolTip(this.btnUpBr, "Move Up");
  180. this.btnUpBr.UseVisualStyleBackColor = true;
  181. this.btnUpBr.Click += new System.EventHandler(this.btnUpBr_Click);
  182. //
  183. // btnDelBr
  184. //
  185. this.btnDelBr.Enabled = false;
  186. this.btnDelBr.Location = new System.Drawing.Point(201, 355);
  187. this.btnDelBr.Name = "btnDelBr";
  188. this.btnDelBr.Size = new System.Drawing.Size(90, 25);
  189. this.btnDelBr.TabIndex = 9;
  190. this.btnDelBr.Text = "Delete";
  191. this.btnDelBr.UseVisualStyleBackColor = true;
  192. this.btnDelBr.Click += new System.EventHandler(this.btnDelBr_Click);
  193. //
  194. // btnModBr
  195. //
  196. this.btnModBr.Enabled = false;
  197. this.btnModBr.Location = new System.Drawing.Point(105, 355);
  198. this.btnModBr.Name = "btnModBr";
  199. this.btnModBr.Size = new System.Drawing.Size(90, 25);
  200. this.btnModBr.TabIndex = 8;
  201. this.btnModBr.Text = "Modify";
  202. this.btnModBr.UseVisualStyleBackColor = true;
  203. this.btnModBr.Click += new System.EventHandler(this.btnModBr_Click);
  204. //
  205. // btnNewBr
  206. //
  207. this.btnNewBr.Location = new System.Drawing.Point(9, 355);
  208. this.btnNewBr.Name = "btnNewBr";
  209. this.btnNewBr.Size = new System.Drawing.Size(90, 25);
  210. this.btnNewBr.TabIndex = 7;
  211. this.btnNewBr.Text = "New";
  212. this.btnNewBr.UseVisualStyleBackColor = true;
  213. this.btnNewBr.Click += new System.EventHandler(this.btnNewBr_Click);
  214. //
  215. // lstBrowsers
  216. //
  217. this.lstBrowsers.FormattingEnabled = true;
  218. this.lstBrowsers.ItemHeight = 16;
  219. this.lstBrowsers.Location = new System.Drawing.Point(7, 7);
  220. this.lstBrowsers.Name = "lstBrowsers";
  221. this.lstBrowsers.Size = new System.Drawing.Size(284, 340);
  222. this.lstBrowsers.TabIndex = 6;
  223. this.lstBrowsers.SelectedIndexChanged += new System.EventHandler(this.lstBrowsers_SelectedIndexChanged);
  224. //
  225. // ConfigurationWindow
  226. //
  227. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  228. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  229. this.ClientSize = new System.Drawing.Size(369, 438);
  230. this.Controls.Add(this.tabControl1);
  231. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  232. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  233. this.MaximizeBox = false;
  234. this.MinimizeBox = false;
  235. this.Name = "ConfigurationWindow";
  236. this.Text = "Bookmarker Configuration";
  237. this.Load += new System.EventHandler(this.ConfigurationWindow_Load);
  238. this.tabControl1.ResumeLayout(false);
  239. this.tabSites.ResumeLayout(false);
  240. this.tabBrowsers.ResumeLayout(false);
  241. this.ResumeLayout(false);
  242. }
  243. #endregion
  244. private System.Windows.Forms.TabControl tabControl1;
  245. private System.Windows.Forms.TabPage tabSites;
  246. private System.Windows.Forms.TabPage tabBrowsers;
  247. private System.Windows.Forms.ListBox lstWebsites;
  248. private System.Windows.Forms.Button btnDelSite;
  249. private System.Windows.Forms.Button btnModSite;
  250. private System.Windows.Forms.Button btnNewSite;
  251. private System.Windows.Forms.Button btnUpSite;
  252. private System.Windows.Forms.Button btnDownSite;
  253. private System.Windows.Forms.ToolTip toolTip;
  254. private System.Windows.Forms.Button btnDownBr;
  255. private System.Windows.Forms.Button btnUpBr;
  256. private System.Windows.Forms.Button btnDelBr;
  257. private System.Windows.Forms.Button btnModBr;
  258. private System.Windows.Forms.Button btnNewBr;
  259. private System.Windows.Forms.ListBox lstBrowsers;
  260. }
  261. }