ai_office_plugin/AIProofread/Controls/FormWebView.Designer.cs
callmeyan 089e0bc64a 更新数据交互流程;
优化框架架构;
调整数据结构;
2024-11-05 13:40:39 +08:00

66 lines
2.4 KiB
C#

namespace AIProofread.Controls
{
partial class FormWebView
{
/// <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.WebView = new Microsoft.Web.WebView2.WinForms.WebView2();
((System.ComponentModel.ISupportInitialize)(this.WebView)).BeginInit();
this.SuspendLayout();
//
// WebView
//
this.WebView.AllowExternalDrop = true;
this.WebView.CreationProperties = null;
this.WebView.DefaultBackgroundColor = System.Drawing.Color.White;
this.WebView.Dock = System.Windows.Forms.DockStyle.Fill;
this.WebView.Location = new System.Drawing.Point(0, 0);
this.WebView.Name = "WebView";
this.WebView.Size = new System.Drawing.Size(800, 450);
this.WebView.TabIndex = 0;
this.WebView.ZoomFactor = 1D;
//
// FormWebView
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.WebView);
this.Name = "FormWebView";
this.Text = "FormWebView";
this.Load += new System.EventHandler(this.FormWebView_Load);
((System.ComponentModel.ISupportInitialize)(this.WebView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Microsoft.Web.WebView2.WinForms.WebView2 WebView;
}
}