Form1.Designer.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 
  2. namespace PrintHtmlFrom
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.webView21 = new Microsoft.Web.WebView2.WinForms.WebView2();
  32. this.panel1.SuspendLayout();
  33. ((System.ComponentModel.ISupportInitialize)(this.webView21)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // panel1
  37. //
  38. this.panel1.Controls.Add(this.button1);
  39. this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
  40. this.panel1.Location = new System.Drawing.Point(647, 0);
  41. this.panel1.Name = "panel1";
  42. this.panel1.Size = new System.Drawing.Size(153, 450);
  43. this.panel1.TabIndex = 0;
  44. //
  45. // button1
  46. //
  47. this.button1.Location = new System.Drawing.Point(44, 377);
  48. this.button1.Name = "button1";
  49. this.button1.Size = new System.Drawing.Size(75, 23);
  50. this.button1.TabIndex = 0;
  51. this.button1.Text = "button1";
  52. this.button1.UseVisualStyleBackColor = true;
  53. //
  54. // webView21
  55. //
  56. this.webView21.AllowExternalDrop = true;
  57. this.webView21.CreationProperties = null;
  58. this.webView21.DefaultBackgroundColor = System.Drawing.Color.White;
  59. this.webView21.Dock = System.Windows.Forms.DockStyle.Fill;
  60. this.webView21.Location = new System.Drawing.Point(0, 0);
  61. this.webView21.Name = "webView21";
  62. this.webView21.Size = new System.Drawing.Size(647, 450);
  63. this.webView21.TabIndex = 1;
  64. this.webView21.ZoomFactor = 1D;
  65. //
  66. // Form1
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(800, 450);
  71. this.Controls.Add(this.webView21);
  72. this.Controls.Add(this.panel1);
  73. this.Name = "Form1";
  74. this.Text = "Print";
  75. this.Load += new System.EventHandler(this.Form1_Load);
  76. this.panel1.ResumeLayout(false);
  77. ((System.ComponentModel.ISupportInitialize)(this.webView21)).EndInit();
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private System.Windows.Forms.Panel panel1;
  82. private System.Windows.Forms.Button button1;
  83. private Microsoft.Web.WebView2.WinForms.WebView2 webView21;
  84. }
  85. }