62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
namespace Winform2
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
|
||
this.SuspendLayout();
|
||
//
|
||
// webBrowser1
|
||
//
|
||
this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.webBrowser1.Location = new System.Drawing.Point(0, 0);
|
||
this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
|
||
this.webBrowser1.Name = "webBrowser1";
|
||
this.webBrowser1.Size = new System.Drawing.Size(800, 450);
|
||
this.webBrowser1.TabIndex = 0;
|
||
this.webBrowser1.Url = new System.Uri("https://localhost:7150/Home/Index?machineid=642111", System.UriKind.Absolute);
|
||
//
|
||
// Form1
|
||
//
|
||
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.webBrowser1);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.WebBrowser webBrowser1;
|
||
}
|
||
}
|
||
|