forked from naudio/NAudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
102 lines (94 loc) · 4.41 KB
/
MainForm.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
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
namespace NAudioDemo
{
sealed partial class MainForm
{
/// <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.listBoxDemos = new System.Windows.Forms.ListBox();
this.buttonLoadDemo = new System.Windows.Forms.Button();
this.panelDemo = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// listBoxDemos
//
this.listBoxDemos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.listBoxDemos.FormattingEnabled = true;
this.listBoxDemos.Location = new System.Drawing.Point(12, 51);
this.listBoxDemos.Name = "listBoxDemos";
this.listBoxDemos.Size = new System.Drawing.Size(120, 329);
this.listBoxDemos.TabIndex = 3;
this.listBoxDemos.DoubleClick += new System.EventHandler(this.OnListBoxDemosDoubleClick);
//
// buttonLoadDemo
//
this.buttonLoadDemo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonLoadDemo.Location = new System.Drawing.Point(13, 397);
this.buttonLoadDemo.Name = "buttonLoadDemo";
this.buttonLoadDemo.Size = new System.Drawing.Size(75, 23);
this.buttonLoadDemo.TabIndex = 4;
this.buttonLoadDemo.Text = "Load";
this.buttonLoadDemo.UseVisualStyleBackColor = true;
this.buttonLoadDemo.Click += new System.EventHandler(this.OnLoadDemoClick);
//
// panelDemo
//
this.panelDemo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panelDemo.Location = new System.Drawing.Point(139, 14);
this.panelDemo.Name = "panelDemo";
this.panelDemo.Size = new System.Drawing.Size(681, 405);
this.panelDemo.TabIndex = 5;
//
// label1
//
this.label1.Location = new System.Drawing.Point(13, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 35);
this.label1.TabIndex = 6;
this.label1.Text = "Select a demo, and click Load";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(829, 432);
this.Controls.Add(this.label1);
this.Controls.Add(this.panelDemo);
this.Controls.Add(this.buttonLoadDemo);
this.Controls.Add(this.listBoxDemos);
this.Name = "MainForm";
this.Text = "NAudio Demo";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnMainFormClosing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox listBoxDemos;
private System.Windows.Forms.Button buttonLoadDemo;
private System.Windows.Forms.Panel panelDemo;
private System.Windows.Forms.Label label1;
}
}