StyleSheetForm.Designer.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. namespace MarkdownRenderer
  2. {
  3. partial class StyleSheetForm
  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(StyleSheetForm));
  30. this.MainListView = new System.Windows.Forms.ListView();
  31. this.MainImageList = new System.Windows.Forms.ImageList(this.components);
  32. this.StateImageList = new System.Windows.Forms.ImageList(this.components);
  33. this.EditGroupBox = new System.Windows.Forms.GroupBox();
  34. this.FontSizeUpDown = new System.Windows.Forms.NumericUpDown();
  35. this.comboBox1 = new System.Windows.Forms.ComboBox();
  36. this.ResetButton = new System.Windows.Forms.Button();
  37. this.F12Button = new System.Windows.Forms.Button();
  38. this.DragLabel = new System.Windows.Forms.Label();
  39. this.BodyClassLabel = new System.Windows.Forms.Label();
  40. this.RemarkLabel = new System.Windows.Forms.Label();
  41. this.NameLabel = new System.Windows.Forms.Label();
  42. this.RemarkTextBox = new System.Windows.Forms.TextBox();
  43. this.BodyClassTextBox = new System.Windows.Forms.TextBox();
  44. this.NameTextBox = new System.Windows.Forms.TextBox();
  45. this.SaveAsButton = new System.Windows.Forms.Button();
  46. this.SaveButton = new System.Windows.Forms.Button();
  47. this.DeleteButton = new System.Windows.Forms.Button();
  48. this.EditorPanel = new System.Windows.Forms.Panel();
  49. this.NewButton = new System.Windows.Forms.Button();
  50. this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
  51. this.CloseButton = new System.Windows.Forms.Button();
  52. this.EditGroupBox.SuspendLayout();
  53. ((System.ComponentModel.ISupportInitialize)(this.FontSizeUpDown)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
  55. this.MainSplitContainer.Panel1.SuspendLayout();
  56. this.MainSplitContainer.Panel2.SuspendLayout();
  57. this.MainSplitContainer.SuspendLayout();
  58. this.SuspendLayout();
  59. //
  60. // MainListView
  61. //
  62. this.MainListView.Dock = System.Windows.Forms.DockStyle.Fill;
  63. this.MainListView.LargeImageList = this.MainImageList;
  64. this.MainListView.Location = new System.Drawing.Point(0, 26);
  65. this.MainListView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  66. this.MainListView.MultiSelect = false;
  67. this.MainListView.Name = "MainListView";
  68. this.MainListView.Size = new System.Drawing.Size(257, 508);
  69. this.MainListView.SmallImageList = this.MainImageList;
  70. this.MainListView.StateImageList = this.StateImageList;
  71. this.MainListView.TabIndex = 0;
  72. this.MainListView.UseCompatibleStateImageBehavior = false;
  73. this.MainListView.View = System.Windows.Forms.View.Tile;
  74. this.MainListView.SelectedIndexChanged += new System.EventHandler(this.MainListView_SelectedIndexChanged);
  75. //
  76. // MainImageList
  77. //
  78. this.MainImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
  79. this.MainImageList.ImageSize = new System.Drawing.Size(32, 32);
  80. this.MainImageList.TransparentColor = System.Drawing.Color.Transparent;
  81. //
  82. // StateImageList
  83. //
  84. this.StateImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("StateImageList.ImageStream")));
  85. this.StateImageList.TransparentColor = System.Drawing.Color.Transparent;
  86. this.StateImageList.Images.SetKeyName(0, "build-in");
  87. this.StateImageList.Images.SetKeyName(1, "user-created");
  88. //
  89. // EditGroupBox
  90. //
  91. this.EditGroupBox.Controls.Add(this.FontSizeUpDown);
  92. this.EditGroupBox.Controls.Add(this.comboBox1);
  93. this.EditGroupBox.Controls.Add(this.ResetButton);
  94. this.EditGroupBox.Controls.Add(this.F12Button);
  95. this.EditGroupBox.Controls.Add(this.DragLabel);
  96. this.EditGroupBox.Controls.Add(this.BodyClassLabel);
  97. this.EditGroupBox.Controls.Add(this.RemarkLabel);
  98. this.EditGroupBox.Controls.Add(this.NameLabel);
  99. this.EditGroupBox.Controls.Add(this.RemarkTextBox);
  100. this.EditGroupBox.Controls.Add(this.BodyClassTextBox);
  101. this.EditGroupBox.Controls.Add(this.NameTextBox);
  102. this.EditGroupBox.Controls.Add(this.SaveAsButton);
  103. this.EditGroupBox.Controls.Add(this.SaveButton);
  104. this.EditGroupBox.Controls.Add(this.DeleteButton);
  105. this.EditGroupBox.Controls.Add(this.EditorPanel);
  106. this.EditGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
  107. this.EditGroupBox.Location = new System.Drawing.Point(0, 0);
  108. this.EditGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 5, 5);
  109. this.EditGroupBox.Name = "EditGroupBox";
  110. this.EditGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  111. this.EditGroupBox.Size = new System.Drawing.Size(887, 534);
  112. this.EditGroupBox.TabIndex = 1;
  113. this.EditGroupBox.TabStop = false;
  114. this.EditGroupBox.Text = "Old name display here";
  115. //
  116. // FontSizeUpDown
  117. //
  118. this.FontSizeUpDown.Location = new System.Drawing.Point(183, 121);
  119. this.FontSizeUpDown.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  120. this.FontSizeUpDown.Name = "FontSizeUpDown";
  121. this.FontSizeUpDown.Size = new System.Drawing.Size(52, 25);
  122. this.FontSizeUpDown.TabIndex = 10;
  123. this.FontSizeUpDown.Value = new decimal(new int[] {
  124. 18,
  125. 0,
  126. 0,
  127. 0});
  128. //
  129. // comboBox1
  130. //
  131. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  132. this.comboBox1.FormattingEnabled = true;
  133. this.comboBox1.Location = new System.Drawing.Point(13, 122);
  134. this.comboBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  135. this.comboBox1.Name = "comboBox1";
  136. this.comboBox1.Size = new System.Drawing.Size(160, 23);
  137. this.comboBox1.TabIndex = 9;
  138. //
  139. // ResetButton
  140. //
  141. this.ResetButton.Location = new System.Drawing.Point(243, 119);
  142. this.ResetButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  143. this.ResetButton.Name = "ResetButton";
  144. this.ResetButton.Size = new System.Drawing.Size(100, 29);
  145. this.ResetButton.TabIndex = 8;
  146. this.ResetButton.Text = "Reset";
  147. this.ResetButton.UseVisualStyleBackColor = true;
  148. //
  149. // F12Button
  150. //
  151. this.F12Button.Location = new System.Drawing.Point(351, 119);
  152. this.F12Button.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  153. this.F12Button.Name = "F12Button";
  154. this.F12Button.Size = new System.Drawing.Size(100, 29);
  155. this.F12Button.TabIndex = 8;
  156. this.F12Button.Text = "F12";
  157. this.F12Button.UseVisualStyleBackColor = true;
  158. this.F12Button.Click += new System.EventHandler(this.F12Button_Click);
  159. //
  160. // DragLabel
  161. //
  162. this.DragLabel.AllowDrop = true;
  163. this.DragLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  164. this.DragLabel.AutoSize = true;
  165. this.DragLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  166. this.DragLabel.Location = new System.Drawing.Point(788, 54);
  167. this.DragLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  168. this.DragLabel.Name = "DragLabel";
  169. this.DragLabel.Size = new System.Drawing.Size(88, 47);
  170. this.DragLabel.TabIndex = 5;
  171. this.DragLabel.Text = "DragDrop\r\nIm/Export\r\nHere For↓";
  172. this.DragLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  173. this.DragLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.DragLabel_DragDrop);
  174. this.DragLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragLabel_DragEnter);
  175. this.DragLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.DragLabel_MouseDown);
  176. //
  177. // BodyClassLabel
  178. //
  179. this.BodyClassLabel.AutoSize = true;
  180. this.BodyClassLabel.Location = new System.Drawing.Point(7, 59);
  181. this.BodyClassLabel.Name = "BodyClassLabel";
  182. this.BodyClassLabel.Size = new System.Drawing.Size(87, 15);
  183. this.BodyClassLabel.TabIndex = 4;
  184. this.BodyClassLabel.Text = "Body class";
  185. //
  186. // RemarkLabel
  187. //
  188. this.RemarkLabel.AutoSize = true;
  189. this.RemarkLabel.Location = new System.Drawing.Point(7, 89);
  190. this.RemarkLabel.Name = "RemarkLabel";
  191. this.RemarkLabel.Size = new System.Drawing.Size(55, 15);
  192. this.RemarkLabel.TabIndex = 4;
  193. this.RemarkLabel.Text = "Remark";
  194. //
  195. // NameLabel
  196. //
  197. this.NameLabel.AutoSize = true;
  198. this.NameLabel.Location = new System.Drawing.Point(7, 28);
  199. this.NameLabel.Name = "NameLabel";
  200. this.NameLabel.Size = new System.Drawing.Size(39, 15);
  201. this.NameLabel.TabIndex = 4;
  202. this.NameLabel.Text = "Name";
  203. //
  204. // RemarkTextBox
  205. //
  206. this.RemarkTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  207. | System.Windows.Forms.AnchorStyles.Right)));
  208. this.RemarkTextBox.Location = new System.Drawing.Point(67, 85);
  209. this.RemarkTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  210. this.RemarkTextBox.Name = "RemarkTextBox";
  211. this.RemarkTextBox.Size = new System.Drawing.Size(713, 25);
  212. this.RemarkTextBox.TabIndex = 3;
  213. this.RemarkTextBox.TextChanged += new System.EventHandler(this.AllTextBox_TextChanged);
  214. //
  215. // BodyClassTextBox
  216. //
  217. this.BodyClassTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  218. | System.Windows.Forms.AnchorStyles.Right)));
  219. this.BodyClassTextBox.Location = new System.Drawing.Point(99, 54);
  220. this.BodyClassTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  221. this.BodyClassTextBox.Name = "BodyClassTextBox";
  222. this.BodyClassTextBox.Size = new System.Drawing.Size(593, 25);
  223. this.BodyClassTextBox.TabIndex = 3;
  224. this.BodyClassTextBox.TextChanged += new System.EventHandler(this.AllTextBox_TextChanged);
  225. //
  226. // NameTextBox
  227. //
  228. this.NameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  229. | System.Windows.Forms.AnchorStyles.Right)));
  230. this.NameTextBox.Location = new System.Drawing.Point(51, 22);
  231. this.NameTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  232. this.NameTextBox.Name = "NameTextBox";
  233. this.NameTextBox.Size = new System.Drawing.Size(668, 25);
  234. this.NameTextBox.TabIndex = 3;
  235. this.NameTextBox.TextChanged += new System.EventHandler(this.AllTextBox_TextChanged);
  236. //
  237. // SaveAsButton
  238. //
  239. this.SaveAsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  240. this.SaveAsButton.Location = new System.Drawing.Point(805, 22);
  241. this.SaveAsButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  242. this.SaveAsButton.Name = "SaveAsButton";
  243. this.SaveAsButton.Size = new System.Drawing.Size(75, 26);
  244. this.SaveAsButton.TabIndex = 2;
  245. this.SaveAsButton.Text = "Save As";
  246. this.SaveAsButton.UseVisualStyleBackColor = true;
  247. //
  248. // SaveButton
  249. //
  250. this.SaveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  251. this.SaveButton.Location = new System.Drawing.Point(725, 22);
  252. this.SaveButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  253. this.SaveButton.Name = "SaveButton";
  254. this.SaveButton.Size = new System.Drawing.Size(75, 26);
  255. this.SaveButton.TabIndex = 2;
  256. this.SaveButton.Text = "Save";
  257. this.SaveButton.UseVisualStyleBackColor = true;
  258. //
  259. // DeleteButton
  260. //
  261. this.DeleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  262. this.DeleteButton.Location = new System.Drawing.Point(707, 54);
  263. this.DeleteButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  264. this.DeleteButton.Name = "DeleteButton";
  265. this.DeleteButton.Size = new System.Drawing.Size(75, 26);
  266. this.DeleteButton.TabIndex = 2;
  267. this.DeleteButton.Text = "Delete";
  268. this.DeleteButton.UseVisualStyleBackColor = true;
  269. //
  270. // EditorPanel
  271. //
  272. this.EditorPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  273. | System.Windows.Forms.AnchorStyles.Left)
  274. | System.Windows.Forms.AnchorStyles.Right)));
  275. this.EditorPanel.Location = new System.Drawing.Point(9, 155);
  276. this.EditorPanel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  277. this.EditorPanel.Name = "EditorPanel";
  278. this.EditorPanel.Size = new System.Drawing.Size(868, 372);
  279. this.EditorPanel.TabIndex = 7;
  280. //
  281. // NewButton
  282. //
  283. this.NewButton.Dock = System.Windows.Forms.DockStyle.Top;
  284. this.NewButton.Location = new System.Drawing.Point(0, 0);
  285. this.NewButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  286. this.NewButton.Name = "NewButton";
  287. this.NewButton.Size = new System.Drawing.Size(257, 26);
  288. this.NewButton.TabIndex = 2;
  289. this.NewButton.Text = "New";
  290. this.NewButton.UseVisualStyleBackColor = true;
  291. this.NewButton.Click += new System.EventHandler(this.NewButton_Click);
  292. //
  293. // MainSplitContainer
  294. //
  295. this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  296. this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
  297. this.MainSplitContainer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  298. this.MainSplitContainer.Name = "MainSplitContainer";
  299. //
  300. // MainSplitContainer.Panel1
  301. //
  302. this.MainSplitContainer.Panel1.Controls.Add(this.CloseButton);
  303. this.MainSplitContainer.Panel1.Controls.Add(this.MainListView);
  304. this.MainSplitContainer.Panel1.Controls.Add(this.NewButton);
  305. //
  306. // MainSplitContainer.Panel2
  307. //
  308. this.MainSplitContainer.Panel2.Controls.Add(this.EditGroupBox);
  309. this.MainSplitContainer.Size = new System.Drawing.Size(1148, 534);
  310. this.MainSplitContainer.SplitterDistance = 257;
  311. this.MainSplitContainer.TabIndex = 3;
  312. //
  313. // CloseButton
  314. //
  315. this.CloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  316. this.CloseButton.Dock = System.Windows.Forms.DockStyle.Bottom;
  317. this.CloseButton.Location = new System.Drawing.Point(0, 508);
  318. this.CloseButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  319. this.CloseButton.Name = "CloseButton";
  320. this.CloseButton.Size = new System.Drawing.Size(257, 26);
  321. this.CloseButton.TabIndex = 3;
  322. this.CloseButton.Text = "Close";
  323. this.CloseButton.UseVisualStyleBackColor = true;
  324. this.CloseButton.Click += new System.EventHandler(this.CloseButton_Click);
  325. //
  326. // StyleSheetForm
  327. //
  328. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  329. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  330. this.CancelButton = this.CloseButton;
  331. this.ClientSize = new System.Drawing.Size(1148, 534);
  332. this.Controls.Add(this.MainSplitContainer);
  333. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  334. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  335. this.Name = "StyleSheetForm";
  336. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  337. this.Text = "Manage markdown style sheets";
  338. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.StyleSheetForm_FormClosed);
  339. this.EditGroupBox.ResumeLayout(false);
  340. this.EditGroupBox.PerformLayout();
  341. ((System.ComponentModel.ISupportInitialize)(this.FontSizeUpDown)).EndInit();
  342. this.MainSplitContainer.Panel1.ResumeLayout(false);
  343. this.MainSplitContainer.Panel2.ResumeLayout(false);
  344. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
  345. this.MainSplitContainer.ResumeLayout(false);
  346. this.ResumeLayout(false);
  347. }
  348. #endregion
  349. private System.Windows.Forms.ListView MainListView;
  350. private System.Windows.Forms.ImageList MainImageList;
  351. private System.Windows.Forms.GroupBox EditGroupBox;
  352. private System.Windows.Forms.Button DeleteButton;
  353. private System.Windows.Forms.Button NewButton;
  354. private System.Windows.Forms.Button SaveButton;
  355. private System.Windows.Forms.Button SaveAsButton;
  356. private System.Windows.Forms.TextBox RemarkTextBox;
  357. private System.Windows.Forms.TextBox NameTextBox;
  358. private System.Windows.Forms.SplitContainer MainSplitContainer;
  359. private System.Windows.Forms.TextBox BodyClassTextBox;
  360. private System.Windows.Forms.Label BodyClassLabel;
  361. private System.Windows.Forms.Label RemarkLabel;
  362. private System.Windows.Forms.Label NameLabel;
  363. private System.Windows.Forms.Label DragLabel;
  364. private System.Windows.Forms.ImageList StateImageList;
  365. private System.Windows.Forms.Button CloseButton;
  366. private System.Windows.Forms.Panel EditorPanel;
  367. private System.Windows.Forms.Button F12Button;
  368. private System.Windows.Forms.Button ResetButton;
  369. private System.Windows.Forms.NumericUpDown FontSizeUpDown;
  370. private System.Windows.Forms.ComboBox comboBox1;
  371. }
  372. }