-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMainWindowV3.Designer.cs
77 lines (72 loc) · 2.93 KB
/
MainWindowV3.Designer.cs
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
namespace DualSenseAT
{
partial class MainWindowV3
{
/// <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.components = new System.ComponentModel.Container();
this.guna2Elipse1 = new Guna.UI2.WinForms.Guna2Elipse(this.components);
this.guna2DragControl1 = new Guna.UI2.WinForms.Guna2DragControl(this.components);
this.dashboard1 = new DualSenseAT.V2.Views.dashboard();
this.SuspendLayout();
//
// guna2Elipse1
//
this.guna2Elipse1.TargetControl = this;
//
// guna2DragControl1
//
this.guna2DragControl1.TargetControl = null;
//
// dashboard1
//
this.dashboard1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dashboard1.Location = new System.Drawing.Point(0, 0);
this.dashboard1.Name = "dashboard1";
this.dashboard1.Size = new System.Drawing.Size(1000, 600);
this.dashboard1.TabIndex = 0;
//
// MainWindowV3
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(1000, 600);
this.Controls.Add(this.dashboard1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(1000, 600);
this.MinimumSize = new System.Drawing.Size(1000, 600);
this.Name = "MainWindowV3";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MainWindowV3";
this.Load += new System.EventHandler(this.MainWindowV3_Load);
this.ResumeLayout(false);
}
#endregion
private Guna.UI2.WinForms.Guna2Elipse guna2Elipse1;
private Guna.UI2.WinForms.Guna2DragControl guna2DragControl1;
private V2.Views.dashboard dashboard1;
}
}