Form1.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using Microsoft.Web.WebView2.WinForms;
  2. namespace HTEXWordTest
  3. {
  4. partial class Form1
  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.webView21 = new Microsoft.Web.WebView2.WinForms.WebView2();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.button4 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.webView21)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // webView21
  38. //
  39. this.webView21.AllowExternalDrop = true;
  40. this.webView21.CreationProperties = null;
  41. this.webView21.DefaultBackgroundColor = System.Drawing.Color.White;
  42. this.webView21.Location = new System.Drawing.Point(-1, 51);
  43. this.webView21.Name = "webView21";
  44. this.webView21.Size = new System.Drawing.Size(808, 616);
  45. this.webView21.TabIndex = 0;
  46. this.webView21.ZoomFactor = 1D;
  47. this.webView21.Click += new System.EventHandler(this.webView21_Click);
  48. //
  49. // button1
  50. //
  51. this.button1.Location = new System.Drawing.Point(-1, 0);
  52. this.button1.Name = "button1";
  53. this.button1.Size = new System.Drawing.Size(75, 23);
  54. this.button1.TabIndex = 1;
  55. this.button1.Text = "button1";
  56. this.button1.UseVisualStyleBackColor = true;
  57. this.button1.Click += new System.EventHandler(this.button1_Click);
  58. //
  59. // button2
  60. //
  61. this.button2.Location = new System.Drawing.Point(80, 0);
  62. this.button2.Name = "button2";
  63. this.button2.Size = new System.Drawing.Size(75, 23);
  64. this.button2.TabIndex = 2;
  65. this.button2.Text = "button2";
  66. this.button2.UseVisualStyleBackColor = true;
  67. this.button2.Click += new System.EventHandler(this.button2_Click);
  68. //
  69. // button3
  70. //
  71. this.button3.Location = new System.Drawing.Point(162, 0);
  72. this.button3.Name = "button3";
  73. this.button3.Size = new System.Drawing.Size(75, 23);
  74. this.button3.TabIndex = 3;
  75. this.button3.Text = "button3";
  76. this.button3.UseVisualStyleBackColor = true;
  77. this.button3.Click += new System.EventHandler(this.button3_Click);
  78. //
  79. // button4
  80. //
  81. this.button4.Location = new System.Drawing.Point(244, -1);
  82. this.button4.Name = "button4";
  83. this.button4.Size = new System.Drawing.Size(75, 23);
  84. this.button4.TabIndex = 4;
  85. this.button4.Text = "button4";
  86. this.button4.UseVisualStyleBackColor = true;
  87. this.button4.Click += new System.EventHandler(this.button4_Click);
  88. //
  89. // Form1
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.ClientSize = new System.Drawing.Size(804, 666);
  94. this.Controls.Add(this.button4);
  95. this.Controls.Add(this.button3);
  96. this.Controls.Add(this.button2);
  97. this.Controls.Add(this.button1);
  98. this.Controls.Add(this.webView21);
  99. this.Name = "Form1";
  100. this.Text = "Form1";
  101. ((System.ComponentModel.ISupportInitialize)(this.webView21)).EndInit();
  102. this.ResumeLayout(false);
  103. }
  104. #endregion
  105. public WebView2 webView21;
  106. private System.Windows.Forms.Button button1;
  107. private System.Windows.Forms.Button button2;
  108. private System.Windows.Forms.Button button3;
  109. private System.Windows.Forms.Button button4;
  110. }
  111. }