-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiuCommands.Designer.cs
More file actions
79 lines (74 loc) · 2.89 KB
/
Copy pathMiuCommands.Designer.cs
File metadata and controls
79 lines (74 loc) · 2.89 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
namespace StreamStartingTimer {
partial class frmMiuCommands {
/// <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() {
ListViewItem listViewItem1 = new ListViewItem("fdfd");
ListViewItem listViewItem2 = new ListViewItem("fdsf");
listView1 = new ListView();
MiuCmdName = new ColumnHeader();
MiuCmdId = new ColumnHeader();
SuspendLayout();
//
// listView1
//
listView1.AllowDrop = true;
listView1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
listView1.Columns.AddRange(new ColumnHeader[] { MiuCmdName, MiuCmdId });
listView1.FullRowSelect = true;
listView1.GridLines = true;
listView1.Items.AddRange(new ListViewItem[] { listViewItem1, listViewItem2 });
listView1.Location = new Point(-1, -1);
listView1.MultiSelect = false;
listView1.Name = "listView1";
listView1.Size = new Size(414, 453);
listView1.TabIndex = 0;
listView1.UseCompatibleStateImageBehavior = false;
listView1.View = View.Details;
listView1.MouseDoubleClick += listView1_MouseDoubleClick;
//
// MiuCmdName
//
MiuCmdName.Text = "Command Name";
MiuCmdName.Width = 160;
//
// MiuCmdId
//
MiuCmdId.Text = "ID";
MiuCmdId.Width = 250;
//
// frmMiuCommands
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(412, 450);
Controls.Add(listView1);
Name = "frmMiuCommands";
Text = "Mix It Up Commands (double click to copy command name)";
Load += frmMiuCommands_Load;
Shown += frmMiuCommands_Shown;
ResumeLayout(false);
}
#endregion
private ListView listView1;
private ColumnHeader MiuCmdName;
private ColumnHeader MiuCmdId;
}
}