vsto-demo/Webview2WinFormsApp/Form2.Designer.cs
2023-12-12 16:53:12 +08:00

61 lines
1.8 KiB
C#

namespace Webview2WinFormsApp
{
partial class Form2
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
panel1 = new Panel();
SuspendLayout();
//
// panel1
//
panel1.AutoScroll = true;
panel1.Dock = DockStyle.Fill;
panel1.Location = new Point(0, 0);
panel1.Name = "panel1";
panel1.Padding = new Padding(10);
panel1.Size = new Size(878, 699);
panel1.TabIndex = 0;
//
// Form2
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.White;
ClientSize = new Size(878, 699);
Controls.Add(panel1);
Name = "Form2";
Text = "Form2";
Load += Form2_Load;
ResumeLayout(false);
}
#endregion
private Panel panel1;
}
}