-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.Designer.cs
More file actions
86 lines (80 loc) · 3.11 KB
/
Main.Designer.cs
File metadata and controls
86 lines (80 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
namespace WindowsFormsApp2
{
partial class Main
{
/// <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.m_Load = new System.Windows.Forms.Button();
this.m_WebView = new Miniblink.WebView();
this.m_Url = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// m_Load
//
this.m_Load.Location = new System.Drawing.Point(713, 12);
this.m_Load.Name = "m_Load";
this.m_Load.Size = new System.Drawing.Size(75, 23);
this.m_Load.TabIndex = 1;
this.m_Load.Text = "加载";
this.m_Load.UseVisualStyleBackColor = true;
this.m_Load.Click += new System.EventHandler(this.OnLoadClicked);
//
// m_WebView
//
this.m_WebView.Location = new System.Drawing.Point(12, 41);
this.m_WebView.Name = "m_WebView";
this.m_WebView.Size = new System.Drawing.Size(776, 397);
this.m_WebView.TabIndex = 2;
//
// m_Url
//
this.m_Url.Location = new System.Drawing.Point(12, 12);
this.m_Url.Name = "m_Url";
this.m_Url.Size = new System.Drawing.Size(695, 21);
this.m_Url.TabIndex = 3;
this.m_Url.Text = "https://www.bilibili.com";
//
// 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.m_Url);
this.Controls.Add(this.m_WebView);
this.Controls.Add(this.m_Load);
this.ImeMode = System.Windows.Forms.ImeMode.On;
this.MinimumSize = new System.Drawing.Size(400, 200);
this.Name = "Form1";
this.Text = "Miniblink UserControl";
this.Load += new System.EventHandler(this.Form1_Load);
this.Resize += new System.EventHandler(this.Form1_Resize);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button m_Load;
private Miniblink.WebView m_WebView;
private System.Windows.Forms.TextBox m_Url;
}
}