RendererTestForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. using System.Windows.Forms;
  2. namespace MarkdownRenderer.Test
  3. {
  4. partial class RendererTestForm
  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. private void InitializeComponent()
  28. {
  29. this.ScrollPercentLabel = new System.Windows.Forms.Label();
  30. this.LoadSampleButton = new System.Windows.Forms.Button();
  31. this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
  32. this.MainEditorRightPanel = new System.Windows.Forms.Panel();
  33. this.EditorPanel = new System.Windows.Forms.Panel();
  34. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  35. this.F12Button = new System.Windows.Forms.Button();
  36. this.ThemeComboBox = new System.Windows.Forms.ComboBox();
  37. this.FontSizeUpDown = new System.Windows.Forms.NumericUpDown();
  38. this.SwapPanelCheckBox = new System.Windows.Forms.CheckBox();
  39. this.DropLoadLabel = new System.Windows.Forms.Label();
  40. this.FileNameTextBox = new System.Windows.Forms.TextBox();
  41. this.DragOutLabel = new System.Windows.Forms.Label();
  42. this.panel1 = new System.Windows.Forms.Panel();
  43. this.FilePathTextBox = new System.Windows.Forms.TextBox();
  44. this.SaveButton = new System.Windows.Forms.Button();
  45. this.label1 = new System.Windows.Forms.Label();
  46. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
  47. this.MainSplitContainer.Panel2.SuspendLayout();
  48. this.MainSplitContainer.SuspendLayout();
  49. this.MainEditorRightPanel.SuspendLayout();
  50. this.flowLayoutPanel1.SuspendLayout();
  51. ((System.ComponentModel.ISupportInitialize)(this.FontSizeUpDown)).BeginInit();
  52. this.panel1.SuspendLayout();
  53. this.SuspendLayout();
  54. //
  55. // ScrollPercentLabel
  56. //
  57. this.ScrollPercentLabel.AutoSize = true;
  58. this.ScrollPercentLabel.Location = new System.Drawing.Point(246, 6);
  59. this.ScrollPercentLabel.Margin = new System.Windows.Forms.Padding(2, 6, 2, 0);
  60. this.ScrollPercentLabel.Name = "ScrollPercentLabel";
  61. this.ScrollPercentLabel.Size = new System.Drawing.Size(35, 12);
  62. this.ScrollPercentLabel.TabIndex = 4;
  63. this.ScrollPercentLabel.Text = "45.67";
  64. //
  65. // LoadSampleButton
  66. //
  67. this.LoadSampleButton.Location = new System.Drawing.Point(2, 2);
  68. this.LoadSampleButton.Margin = new System.Windows.Forms.Padding(2);
  69. this.LoadSampleButton.Name = "LoadSampleButton";
  70. this.LoadSampleButton.Size = new System.Drawing.Size(52, 22);
  71. this.LoadSampleButton.TabIndex = 5;
  72. this.LoadSampleButton.Text = "Sample";
  73. this.LoadSampleButton.UseVisualStyleBackColor = true;
  74. this.LoadSampleButton.Click += new System.EventHandler(this.LoadSampleButton_Click);
  75. //
  76. // MainSplitContainer
  77. //
  78. this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
  80. this.MainSplitContainer.Margin = new System.Windows.Forms.Padding(2);
  81. this.MainSplitContainer.Name = "MainSplitContainer";
  82. //
  83. // MainSplitContainer.Panel2
  84. //
  85. this.MainSplitContainer.Panel2.Controls.Add(this.MainEditorRightPanel);
  86. this.MainSplitContainer.Size = new System.Drawing.Size(970, 599);
  87. this.MainSplitContainer.SplitterDistance = 474;
  88. this.MainSplitContainer.SplitterWidth = 3;
  89. this.MainSplitContainer.TabIndex = 6;
  90. //
  91. // MainEditorRightPanel
  92. //
  93. this.MainEditorRightPanel.Controls.Add(this.EditorPanel);
  94. this.MainEditorRightPanel.Controls.Add(this.flowLayoutPanel1);
  95. this.MainEditorRightPanel.Controls.Add(this.panel1);
  96. this.MainEditorRightPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  97. this.MainEditorRightPanel.Location = new System.Drawing.Point(0, 0);
  98. this.MainEditorRightPanel.Name = "MainEditorRightPanel";
  99. this.MainEditorRightPanel.Size = new System.Drawing.Size(493, 599);
  100. this.MainEditorRightPanel.TabIndex = 13;
  101. //
  102. // EditorPanel
  103. //
  104. this.EditorPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  105. this.EditorPanel.Location = new System.Drawing.Point(0, 76);
  106. this.EditorPanel.Name = "EditorPanel";
  107. this.EditorPanel.Size = new System.Drawing.Size(493, 523);
  108. this.EditorPanel.TabIndex = 7;
  109. //
  110. // flowLayoutPanel1
  111. //
  112. this.flowLayoutPanel1.AutoSize = true;
  113. this.flowLayoutPanel1.Controls.Add(this.LoadSampleButton);
  114. this.flowLayoutPanel1.Controls.Add(this.F12Button);
  115. this.flowLayoutPanel1.Controls.Add(this.ThemeComboBox);
  116. this.flowLayoutPanel1.Controls.Add(this.ScrollPercentLabel);
  117. this.flowLayoutPanel1.Controls.Add(this.FontSizeUpDown);
  118. this.flowLayoutPanel1.Controls.Add(this.SwapPanelCheckBox);
  119. this.flowLayoutPanel1.Controls.Add(this.DropLoadLabel);
  120. this.flowLayoutPanel1.Controls.Add(this.FileNameTextBox);
  121. this.flowLayoutPanel1.Controls.Add(this.DragOutLabel);
  122. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  123. this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 22);
  124. this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(2);
  125. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  126. this.flowLayoutPanel1.Size = new System.Drawing.Size(493, 54);
  127. this.flowLayoutPanel1.TabIndex = 12;
  128. //
  129. // F12Button
  130. //
  131. this.F12Button.Location = new System.Drawing.Point(59, 3);
  132. this.F12Button.Name = "F12Button";
  133. this.F12Button.Size = new System.Drawing.Size(42, 20);
  134. this.F12Button.TabIndex = 10;
  135. this.F12Button.Text = "F12";
  136. this.F12Button.UseVisualStyleBackColor = true;
  137. this.F12Button.Click += new System.EventHandler(this.F12Button_Click);
  138. //
  139. // ThemeComboBox
  140. //
  141. this.ThemeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  142. this.ThemeComboBox.FormattingEnabled = true;
  143. this.ThemeComboBox.Location = new System.Drawing.Point(107, 3);
  144. this.ThemeComboBox.Name = "ThemeComboBox";
  145. this.ThemeComboBox.Size = new System.Drawing.Size(134, 20);
  146. this.ThemeComboBox.TabIndex = 8;
  147. this.ThemeComboBox.SelectedValueChanged += new System.EventHandler(this.ThemeComboBox_SelectedValueChanged);
  148. //
  149. // FontSizeUpDown
  150. //
  151. this.FontSizeUpDown.Location = new System.Drawing.Point(286, 3);
  152. this.FontSizeUpDown.Name = "FontSizeUpDown";
  153. this.FontSizeUpDown.Size = new System.Drawing.Size(37, 21);
  154. this.FontSizeUpDown.TabIndex = 9;
  155. this.FontSizeUpDown.Value = new decimal(new int[] {
  156. 16,
  157. 0,
  158. 0,
  159. 0});
  160. this.FontSizeUpDown.ValueChanged += new System.EventHandler(this.FontSizeUpDown_ValueChanged);
  161. //
  162. // SwapPanelCheckBox
  163. //
  164. this.SwapPanelCheckBox.AutoSize = true;
  165. this.SwapPanelCheckBox.Location = new System.Drawing.Point(329, 3);
  166. this.SwapPanelCheckBox.Name = "SwapPanelCheckBox";
  167. this.SwapPanelCheckBox.Size = new System.Drawing.Size(84, 16);
  168. this.SwapPanelCheckBox.TabIndex = 11;
  169. this.SwapPanelCheckBox.Text = "Swap Panel";
  170. this.SwapPanelCheckBox.UseVisualStyleBackColor = true;
  171. this.SwapPanelCheckBox.CheckedChanged += new System.EventHandler(this.SwapPanelCheckBox_CheckedChanged);
  172. //
  173. // DropLoadLabel
  174. //
  175. this.DropLoadLabel.AllowDrop = true;
  176. this.DropLoadLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  177. this.DropLoadLabel.AutoSize = true;
  178. this.DropLoadLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  179. this.DropLoadLabel.Location = new System.Drawing.Point(3, 27);
  180. this.DropLoadLabel.Name = "DropLoadLabel";
  181. this.DropLoadLabel.Size = new System.Drawing.Size(121, 26);
  182. this.DropLoadLabel.TabIndex = 6;
  183. this.DropLoadLabel.Text = "↘Drop file tere ↙\r\n↗to load content↖";
  184. this.DropLoadLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.DropLoadLabel_DragDrop);
  185. this.DropLoadLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.DropLoadLabel_DragEnter);
  186. //
  187. // FileNameTextBox
  188. //
  189. this.FileNameTextBox.Location = new System.Drawing.Point(130, 30);
  190. this.FileNameTextBox.Name = "FileNameTextBox";
  191. this.FileNameTextBox.Size = new System.Drawing.Size(124, 21);
  192. this.FileNameTextBox.TabIndex = 12;
  193. this.FileNameTextBox.Text = "untitled.md";
  194. this.FileNameTextBox.TextChanged += new System.EventHandler(this.FileNameTextBox_TextChanged);
  195. //
  196. // DragOutLabel
  197. //
  198. this.DragOutLabel.AllowDrop = true;
  199. this.DragOutLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  200. this.DragOutLabel.AutoSize = true;
  201. this.DragOutLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  202. this.DragOutLabel.Location = new System.Drawing.Point(260, 27);
  203. this.DragOutLabel.Name = "DragOutLabel";
  204. this.DragOutLabel.Size = new System.Drawing.Size(121, 26);
  205. this.DragOutLabel.TabIndex = 6;
  206. this.DragOutLabel.Text = "↖Drop here outgo↗\r\n↙copy content to↘";
  207. this.DragOutLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.DropLoadLabel_DragDrop);
  208. this.DragOutLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.DropLoadLabel_DragEnter);
  209. this.DragOutLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.DragOutLabel_MouseDown);
  210. //
  211. // panel1
  212. //
  213. this.panel1.Controls.Add(this.FilePathTextBox);
  214. this.panel1.Controls.Add(this.SaveButton);
  215. this.panel1.Controls.Add(this.label1);
  216. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  217. this.panel1.Location = new System.Drawing.Point(0, 0);
  218. this.panel1.Name = "panel1";
  219. this.panel1.Size = new System.Drawing.Size(493, 22);
  220. this.panel1.TabIndex = 14;
  221. //
  222. // FilePathTextBox
  223. //
  224. this.FilePathTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  225. this.FilePathTextBox.Location = new System.Drawing.Point(54, 0);
  226. this.FilePathTextBox.Name = "FilePathTextBox";
  227. this.FilePathTextBox.ReadOnly = true;
  228. this.FilePathTextBox.Size = new System.Drawing.Size(364, 21);
  229. this.FilePathTextBox.TabIndex = 17;
  230. this.FilePathTextBox.Text = "<current file path> TODO: onchange show * ,add save button and ^S shortcut key";
  231. this.FilePathTextBox.TextChanged += new System.EventHandler(this.FilePathTextBox_TextChanged);
  232. //
  233. // SaveButton
  234. //
  235. this.SaveButton.Dock = System.Windows.Forms.DockStyle.Right;
  236. this.SaveButton.Enabled = false;
  237. this.SaveButton.Location = new System.Drawing.Point(418, 0);
  238. this.SaveButton.Name = "SaveButton";
  239. this.SaveButton.Size = new System.Drawing.Size(75, 22);
  240. this.SaveButton.TabIndex = 16;
  241. this.SaveButton.Text = "Save(^S)";
  242. this.SaveButton.UseVisualStyleBackColor = true;
  243. this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
  244. //
  245. // label1
  246. //
  247. this.label1.Dock = System.Windows.Forms.DockStyle.Left;
  248. this.label1.Location = new System.Drawing.Point(0, 0);
  249. this.label1.Name = "label1";
  250. this.label1.Size = new System.Drawing.Size(54, 22);
  251. this.label1.TabIndex = 15;
  252. this.label1.Text = "Current";
  253. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  254. //
  255. // RendererTestForm
  256. //
  257. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  258. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  259. this.ClientSize = new System.Drawing.Size(970, 599);
  260. this.Controls.Add(this.MainSplitContainer);
  261. this.Margin = new System.Windows.Forms.Padding(2);
  262. this.Name = "RendererTestForm";
  263. this.Text = "Markdown Renderer Test";
  264. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RendererTestForm_FormClosed);
  265. this.Shown += new System.EventHandler(this.RendererTestForm_Shown);
  266. this.MainSplitContainer.Panel2.ResumeLayout(false);
  267. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
  268. this.MainSplitContainer.ResumeLayout(false);
  269. this.MainEditorRightPanel.ResumeLayout(false);
  270. this.MainEditorRightPanel.PerformLayout();
  271. this.flowLayoutPanel1.ResumeLayout(false);
  272. this.flowLayoutPanel1.PerformLayout();
  273. ((System.ComponentModel.ISupportInitialize)(this.FontSizeUpDown)).EndInit();
  274. this.panel1.ResumeLayout(false);
  275. this.panel1.PerformLayout();
  276. this.ResumeLayout(false);
  277. }
  278. #endregion
  279. private System.Windows.Forms.Label ScrollPercentLabel;
  280. private System.Windows.Forms.Button LoadSampleButton;
  281. private System.Windows.Forms.SplitContainer MainSplitContainer;
  282. private System.Windows.Forms.Label DropLoadLabel;
  283. private Panel EditorPanel;
  284. private NumericUpDown FontSizeUpDown;
  285. private ComboBox ThemeComboBox;
  286. private Button F12Button;
  287. private FlowLayoutPanel flowLayoutPanel1;
  288. private Panel MainEditorRightPanel;
  289. private CheckBox SwapPanelCheckBox;
  290. private TextBox FileNameTextBox;
  291. private Label DragOutLabel;
  292. private Panel panel1;
  293. private Label label1;
  294. private TextBox FilePathTextBox;
  295. private Button SaveButton;
  296. }
  297. }