-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWebView2Browser.Designer.cs
More file actions
108 lines (101 loc) · 5.87 KB
/
WebView2Browser.Designer.cs
File metadata and controls
108 lines (101 loc) · 5.87 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using MtrDev.WebView2.Wrapper;
using MtrDev.WebView2.Winforms;
namespace MtrDev.WebView2.WinForms.Demo
{
partial class WebView2Browser
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WebView2Browser));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.controlsWebView2 = new WebView2Control();
this.webView2Control2 = new WebView2Control();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.controlsWebView2, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.webView2Control2, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 87F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1067, 554);
this.tableLayoutPanel1.TabIndex = 0;
//
// controlsWebView2
//
this.controlsWebView2.AreDevToolsEnabled = true;
this.controlsWebView2.BackColor = System.Drawing.SystemColors.Control;
this.controlsWebView2.Dock = System.Windows.Forms.DockStyle.Fill;
this.controlsWebView2.Location = new System.Drawing.Point(0, 0);
this.controlsWebView2.Margin = new System.Windows.Forms.Padding(0);
this.controlsWebView2.Name = "controlsWebView2";
this.controlsWebView2.Size = new System.Drawing.Size(1067, 87);
this.controlsWebView2.TabIndex = 0;
this.controlsWebView2.BeforeEnvironmentCreated += new System.EventHandler<MtrDev.WebView2.Winforms.BeforeEnvironmentCreatedEventArgs>(this.controlsWebView2_BeforeEnvironmentCreated);
this.controlsWebView2.EnvironmentCreated += new System.EventHandler<MtrDev.WebView2.Wrapper.EnvironmentCreatedEventArgs>(this.controlsWebView2_EnvironmentCreated);
this.controlsWebView2.BrowserCreated += new System.EventHandler<System.EventArgs>(this.controlsWebView2_BrowserCreated);
this.controlsWebView2.ZoomFactorChanged += new System.EventHandler<MtrDev.WebView2.Wrapper.ZoomFactorCompletedEventArgs>(this.controlsWebView2_ZoomFactorChanged);
this.controlsWebView2.WebMessageRecieved += new System.EventHandler<MtrDev.WebView2.Wrapper.WebMessageReceivedEventArgs>(this.controlsWebView2_WebMessageRecieved);
//
// webView2Control2
//
this.webView2Control2.AreDevToolsEnabled = true;
this.webView2Control2.BackColor = System.Drawing.SystemColors.Control;
this.webView2Control2.Dock = System.Windows.Forms.DockStyle.Fill;
this.webView2Control2.Location = new System.Drawing.Point(4, 91);
this.webView2Control2.Margin = new System.Windows.Forms.Padding(4);
this.webView2Control2.Name = "webView2Control2";
this.webView2Control2.Size = new System.Drawing.Size(1059, 459);
this.webView2Control2.TabIndex = 1;
this.webView2Control2.Visible = false;
this.webView2Control2.BeforeEnvironmentCreated += new System.EventHandler<MtrDev.WebView2.Winforms.BeforeEnvironmentCreatedEventArgs>(this.webView2Control2_BeforeEnvironmentCreated);
this.webView2Control2.EnvironmentCreated += new System.EventHandler<MtrDev.WebView2.Wrapper.EnvironmentCreatedEventArgs>(this.webView2Control2_EnvironmentCreated);
//
// WebView2Browser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1067, 554);
this.Controls.Add(this.tableLayoutPanel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "WebView2Browser";
this.Text = "WebView2 Windows Forms Browser";
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private WebView2Control controlsWebView2;
private WebView2Control webView2Control2;
}
}