70 lines
2.6 KiB
C#
70 lines
2.6 KiB
C#
namespace WordAddInTest2024.Controls
|
|
{
|
|
partial class FormLogin
|
|
{
|
|
/// <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()
|
|
{
|
|
this.web = new Microsoft.Web.WebView2.WinForms.WebView2();
|
|
((System.ComponentModel.ISupportInitialize)(this.web)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// web
|
|
//
|
|
this.web.AllowExternalDrop = true;
|
|
this.web.CreationProperties = null;
|
|
this.web.DefaultBackgroundColor = System.Drawing.Color.White;
|
|
this.web.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.web.Location = new System.Drawing.Point(0, 0);
|
|
this.web.Name = "web";
|
|
this.web.Size = new System.Drawing.Size(430, 457);
|
|
this.web.TabIndex = 0;
|
|
this.web.ZoomFactor = 1D;
|
|
//
|
|
// FormLogin
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(434, 461);
|
|
this.Controls.Add(this.web);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(450, 500);
|
|
this.MinimumSize = new System.Drawing.Size(450, 500);
|
|
this.Name = "FormLogin";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "登录";
|
|
this.Load += new System.EventHandler(this.FormLogin_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.web)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Microsoft.Web.WebView2.WinForms.WebView2 web;
|
|
}
|
|
} |