added samples
[windows-sources.git] / sdk / samples / FrameworkSamples / NETCF / Technologies / LINQ / cs / linqsamplecs / groupform.designer.cs
blob1c766b75df89edc4b8bacc90f19a2f59c4022a43
1 namespace Microsoft.Samples.Linq
3 partial class GroupForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.txtDir = new System.Windows.Forms.TextBox();
32 this.label1 = new System.Windows.Forms.Label();
33 this.lvGroup = new System.Windows.Forms.ListView();
34 this.colExtension = new System.Windows.Forms.ColumnHeader();
35 this.colName = new System.Windows.Forms.ColumnHeader();
36 this.colLMD = new System.Windows.Forms.ColumnHeader();
37 this.btnGroup = new System.Windows.Forms.Button();
38 this.groupMenu = new System.Windows.Forms.MainMenu();
39 this.miExit = new System.Windows.Forms.MenuItem();
40 this.miSearch = new System.Windows.Forms.MenuItem();
41 this.SuspendLayout();
42 //
43 // txtDir
44 //
45 this.txtDir.Location = new System.Drawing.Point(89, 8);
46 this.txtDir.Name = "txtDir";
47 this.txtDir.Size = new System.Drawing.Size(148, 21);
48 this.txtDir.TabIndex = 0;
49 this.txtDir.Text = "\\windows";
50 //
51 // label1
52 //
53 this.label1.Location = new System.Drawing.Point(0, 9);
54 this.label1.Name = "label1";
55 this.label1.Size = new System.Drawing.Size(83, 20);
56 this.label1.Text = "Directory Path";
57 //
58 // lvGroup
59 //
60 this.lvGroup.Columns.Add(this.colExtension);
61 this.lvGroup.Columns.Add(this.colName);
62 this.lvGroup.Columns.Add(this.colLMD);
63 this.lvGroup.Location = new System.Drawing.Point(3, 59);
64 this.lvGroup.Name = "lvGroup";
65 this.lvGroup.Size = new System.Drawing.Size(234, 209);
66 this.lvGroup.TabIndex = 2;
67 this.lvGroup.View = System.Windows.Forms.View.Details;
68 this.lvGroup.Visible = false;
69 //
70 // colExtension
71 //
72 this.colExtension.Text = "Extension";
73 this.colExtension.Width = 75;
74 //
75 // colName
76 //
77 this.colName.Text = "Name";
78 this.colName.Width = 100;
79 //
80 // colLMD
81 //
82 this.colLMD.Text = "Date modified";
83 this.colLMD.Width = 75;
84 //
85 // btnGroup
86 //
87 this.btnGroup.Location = new System.Drawing.Point(4, 33);
88 this.btnGroup.Name = "btnGroup";
89 this.btnGroup.Size = new System.Drawing.Size(233, 20);
90 this.btnGroup.TabIndex = 3;
91 this.btnGroup.Text = "Group";
92 this.btnGroup.Click += new System.EventHandler(this.btnGroup_Click);
93 //
94 // groupMenu
95 //
96 this.groupMenu.MenuItems.Add(this.miExit);
97 this.groupMenu.MenuItems.Add(this.miSearch);
98 //
99 // miExit
101 this.miExit.Text = "Exit";
102 this.miExit.Click += new System.EventHandler(this.miExit_Click);
104 // miSearch
106 this.miSearch.Text = "Search View";
107 this.miSearch.Click += new System.EventHandler(this.miSearch_Click);
109 // GroupForm
111 this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
112 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
113 this.AutoScroll = true;
114 this.ClientSize = new System.Drawing.Size(240, 268);
115 this.Controls.Add(this.btnGroup);
116 this.Controls.Add(this.lvGroup);
117 this.Controls.Add(this.label1);
118 this.Controls.Add(this.txtDir);
119 this.Menu = this.groupMenu;
120 this.Name = "GroupForm";
121 this.Text = "Group View";
122 this.ResumeLayout(false);
126 #endregion
128 private System.Windows.Forms.TextBox txtDir;
129 private System.Windows.Forms.Label label1;
130 private System.Windows.Forms.ListView lvGroup;
131 private System.Windows.Forms.Button btnGroup;
132 private System.Windows.Forms.ColumnHeader colExtension;
133 private System.Windows.Forms.ColumnHeader colName;
134 private System.Windows.Forms.ColumnHeader colLMD;
135 private System.Windows.Forms.MainMenu groupMenu;
136 private System.Windows.Forms.MenuItem miExit;
137 private System.Windows.Forms.MenuItem miSearch;