PrintToPdfForm.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. namespace MarkdownRenderer
  2. {
  3. partial class PrintToPdfForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrintToPdfForm));
  29. this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
  30. this.LeftSideSplitContainer = new System.Windows.Forms.SplitContainer();
  31. this.CancelPrintButton = new System.Windows.Forms.Button();
  32. this.SaveButton = new System.Windows.Forms.Button();
  33. this.RefreshButton = new System.Windows.Forms.Button();
  34. this.PrintSettingPropertyGrid = new System.Windows.Forms.PropertyGrid();
  35. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
  36. this.MainSplitContainer.Panel1.SuspendLayout();
  37. this.MainSplitContainer.SuspendLayout();
  38. ((System.ComponentModel.ISupportInitialize)(this.LeftSideSplitContainer)).BeginInit();
  39. this.LeftSideSplitContainer.Panel1.SuspendLayout();
  40. this.LeftSideSplitContainer.Panel2.SuspendLayout();
  41. this.LeftSideSplitContainer.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // MainSplitContainer
  45. //
  46. this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  47. this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
  48. this.MainSplitContainer.Margin = new System.Windows.Forms.Padding(2);
  49. this.MainSplitContainer.Name = "MainSplitContainer";
  50. //
  51. // MainSplitContainer.Panel1
  52. //
  53. this.MainSplitContainer.Panel1.Controls.Add(this.LeftSideSplitContainer);
  54. this.MainSplitContainer.Size = new System.Drawing.Size(692, 465);
  55. this.MainSplitContainer.SplitterDistance = 229;
  56. this.MainSplitContainer.TabIndex = 0;
  57. //
  58. // LeftSideSplitContainer
  59. //
  60. this.LeftSideSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  61. this.LeftSideSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  62. this.LeftSideSplitContainer.IsSplitterFixed = true;
  63. this.LeftSideSplitContainer.Location = new System.Drawing.Point(0, 0);
  64. this.LeftSideSplitContainer.Margin = new System.Windows.Forms.Padding(2);
  65. this.LeftSideSplitContainer.Name = "LeftSideSplitContainer";
  66. this.LeftSideSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  67. //
  68. // LeftSideSplitContainer.Panel1
  69. //
  70. this.LeftSideSplitContainer.Panel1.Controls.Add(this.CancelPrintButton);
  71. this.LeftSideSplitContainer.Panel1.Controls.Add(this.SaveButton);
  72. this.LeftSideSplitContainer.Panel1.Controls.Add(this.RefreshButton);
  73. //
  74. // LeftSideSplitContainer.Panel2
  75. //
  76. this.LeftSideSplitContainer.Panel2.Controls.Add(this.PrintSettingPropertyGrid);
  77. this.LeftSideSplitContainer.Size = new System.Drawing.Size(229, 465);
  78. this.LeftSideSplitContainer.SplitterWidth = 3;
  79. this.LeftSideSplitContainer.TabIndex = 0;
  80. //
  81. // CancelPrintButton
  82. //
  83. this.CancelPrintButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  84. this.CancelPrintButton.Location = new System.Drawing.Point(171, 10);
  85. this.CancelPrintButton.Margin = new System.Windows.Forms.Padding(2);
  86. this.CancelPrintButton.Name = "CancelPrintButton";
  87. this.CancelPrintButton.Size = new System.Drawing.Size(56, 21);
  88. this.CancelPrintButton.TabIndex = 2;
  89. this.CancelPrintButton.Text = "Cancel";
  90. this.CancelPrintButton.UseVisualStyleBackColor = true;
  91. this.CancelPrintButton.Click += new System.EventHandler(this.CancelButton_Click);
  92. //
  93. // SaveButton
  94. //
  95. this.SaveButton.Location = new System.Drawing.Point(87, 10);
  96. this.SaveButton.Margin = new System.Windows.Forms.Padding(2);
  97. this.SaveButton.Name = "SaveButton";
  98. this.SaveButton.Size = new System.Drawing.Size(56, 21);
  99. this.SaveButton.TabIndex = 1;
  100. this.SaveButton.Text = "Save";
  101. this.SaveButton.UseVisualStyleBackColor = true;
  102. this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
  103. //
  104. // RefreshButton
  105. //
  106. this.RefreshButton.Location = new System.Drawing.Point(9, 10);
  107. this.RefreshButton.Margin = new System.Windows.Forms.Padding(2);
  108. this.RefreshButton.Name = "RefreshButton";
  109. this.RefreshButton.Size = new System.Drawing.Size(56, 21);
  110. this.RefreshButton.TabIndex = 0;
  111. this.RefreshButton.Text = "Refresh";
  112. this.RefreshButton.UseVisualStyleBackColor = true;
  113. this.RefreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
  114. //
  115. // PrintSettingPropertyGrid
  116. //
  117. this.PrintSettingPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  118. this.PrintSettingPropertyGrid.Location = new System.Drawing.Point(0, 0);
  119. this.PrintSettingPropertyGrid.Margin = new System.Windows.Forms.Padding(2);
  120. this.PrintSettingPropertyGrid.Name = "PrintSettingPropertyGrid";
  121. this.PrintSettingPropertyGrid.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
  122. this.PrintSettingPropertyGrid.Size = new System.Drawing.Size(229, 412);
  123. this.PrintSettingPropertyGrid.TabIndex = 0;
  124. this.PrintSettingPropertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.PrintSettingPropertyGrid_PropertyValueChanged);
  125. //
  126. // PrintToPdfForm
  127. //
  128. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  129. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  130. this.CancelButton = this.CancelPrintButton;
  131. this.ClientSize = new System.Drawing.Size(692, 465);
  132. this.Controls.Add(this.MainSplitContainer);
  133. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  134. this.Margin = new System.Windows.Forms.Padding(2);
  135. this.Name = "PrintToPdfForm";
  136. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  137. this.Text = "Print to PDF";
  138. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.PrintToPdfForm_FormClosed);
  139. this.MainSplitContainer.Panel1.ResumeLayout(false);
  140. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
  141. this.MainSplitContainer.ResumeLayout(false);
  142. this.LeftSideSplitContainer.Panel1.ResumeLayout(false);
  143. this.LeftSideSplitContainer.Panel2.ResumeLayout(false);
  144. ((System.ComponentModel.ISupportInitialize)(this.LeftSideSplitContainer)).EndInit();
  145. this.LeftSideSplitContainer.ResumeLayout(false);
  146. this.ResumeLayout(false);
  147. }
  148. #endregion
  149. private System.Windows.Forms.SplitContainer MainSplitContainer;
  150. private System.Windows.Forms.SplitContainer LeftSideSplitContainer;
  151. private System.Windows.Forms.Button CancelPrintButton;
  152. private System.Windows.Forms.Button RefreshButton;
  153. private System.Windows.Forms.Button SaveButton;
  154. private System.Windows.Forms.PropertyGrid PrintSettingPropertyGrid;
  155. }
  156. }