-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
108 lines (98 loc) · 3.76 KB
/
Form1.Designer.cs
File metadata and controls
108 lines (98 loc) · 3.76 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
namespace WinFormsApp
{
partial class Form1
{
/// <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()
{
backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
webView = new Microsoft.Web.WebView2.WinForms.WebView2();
btnSaveAsPdf = new Button();
btnScanToView = new Button();
labelSource = new Label();
cbxSources = new ComboBox();
((System.ComponentModel.ISupportInitialize)webView).BeginInit();
SuspendLayout();
//
// webView
//
webView.AllowExternalDrop = true;
webView.CreationProperties = null;
webView.DefaultBackgroundColor = Color.White;
webView.Location = new Point(25, 12);
webView.Name = "webView";
webView.Size = new Size(613, 426);
webView.TabIndex = 0;
webView.ZoomFactor = 1D;
// Label
labelSource.Location = new Point(640, 37);
labelSource.Text = "Select Source:";
labelSource.AutoSize = true;
// ComboBox
cbxSources.Location = new Point(640, 57);
cbxSources.Name = "cbxSources";
cbxSources.Width = 150;
//
// btnSaveAsPdf
//
btnSaveAsPdf.Location = new Point(640, 147);
btnSaveAsPdf.Name = "btnSaveAsPdf";
btnSaveAsPdf.Size = new Size(90, 23);
btnSaveAsPdf.TabIndex = 1;
btnSaveAsPdf.Text = "SaveAsPdf";
btnSaveAsPdf.UseVisualStyleBackColor = true;
btnSaveAsPdf.Click += btnSaveAsPdf_Click;
btnScanToView.Location = new Point(640, 107);
btnScanToView.Name = "btnScanToView";
btnScanToView.Size = new Size(90, 23);
btnScanToView.TabIndex = 1;
btnScanToView.Text = "ScanToView";
btnScanToView.UseVisualStyleBackColor = true;
btnScanToView.Click += btnScanToView_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(btnScanToView);
Controls.Add(btnSaveAsPdf);
Controls.Add(labelSource);
Controls.Add(cbxSources);
Controls.Add(webView);
Name = "Form1";
Text = "Form1";
((System.ComponentModel.ISupportInitialize)webView).EndInit();
ResumeLayout(false);
this.Load += new System.EventHandler(this.Window_Loaded);
this.FormClosing += Window_Closing;
}
#endregion
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private Microsoft.Web.WebView2.WinForms.WebView2 webView;
private Button btnSaveAsPdf;
private Button btnScanToView;
private Label labelSource;
private ComboBox cbxSources;
}
}