1
namespace Microsoft
.Samples
.Linq
3 partial class GroupForm
6 /// Required designer variable.
8 private System
.ComponentModel
.IContainer components
= null;
11 /// Clean up any resources being used.
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))
20 base.Dispose(disposing
);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
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();
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";
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";
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;
72 this.colExtension
.Text
= "Extension";
73 this.colExtension
.Width
= 75;
77 this.colName
.Text
= "Name";
78 this.colName
.Width
= 100;
82 this.colLMD
.Text
= "Date modified";
83 this.colLMD
.Width
= 75;
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
);
96 this.groupMenu
.MenuItems
.Add(this.miExit
);
97 this.groupMenu
.MenuItems
.Add(this.miSearch
);
101 this.miExit
.Text
= "Exit";
102 this.miExit
.Click
+= new System
.EventHandler(this.miExit_Click
);
106 this.miSearch
.Text
= "Search View";
107 this.miSearch
.Click
+= new System
.EventHandler(this.miSearch_Click
);
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);
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
;