PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSListFilesInDirectory/MainForm.Designer.cs

#
C# | 164 lines | 132 code | 3 blank | 29 comment | 3 complexity | a2769ebef8de290164f708ce5d5be381 MD5 | raw file
  1. namespace CSListFilesInDirectory
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.txtDir = new System.Windows.Forms.TextBox();
  29. this.btnList = new System.Windows.Forms.Button();
  30. this.lstFiles = new System.Windows.Forms.ListBox();
  31. this.lblCount = new System.Windows.Forms.Label();
  32. this.txtPattern = new System.Windows.Forms.TextBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.chkDir = new System.Windows.Forms.CheckBox();
  35. this.chkFiles = new System.Windows.Forms.CheckBox();
  36. this.SuspendLayout();
  37. //
  38. // txtDir
  39. //
  40. this.txtDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  41. | System.Windows.Forms.AnchorStyles.Right)));
  42. this.txtDir.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
  43. this.txtDir.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories;
  44. this.txtDir.Location = new System.Drawing.Point(12, 12);
  45. this.txtDir.Name = "txtDir";
  46. this.txtDir.Size = new System.Drawing.Size(289, 20);
  47. this.txtDir.TabIndex = 0;
  48. this.txtDir.TextChanged += new System.EventHandler(this.txtDir_TextChanged);
  49. //
  50. // btnList
  51. //
  52. this.btnList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  53. this.btnList.Enabled = false;
  54. this.btnList.Location = new System.Drawing.Point(427, 10);
  55. this.btnList.Name = "btnList";
  56. this.btnList.Size = new System.Drawing.Size(75, 23);
  57. this.btnList.TabIndex = 3;
  58. this.btnList.Text = "List";
  59. this.btnList.UseVisualStyleBackColor = true;
  60. this.btnList.Click += new System.EventHandler(this.btnList_Click);
  61. //
  62. // lstFiles
  63. //
  64. this.lstFiles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  65. | System.Windows.Forms.AnchorStyles.Left)
  66. | System.Windows.Forms.AnchorStyles.Right)));
  67. this.lstFiles.FormattingEnabled = true;
  68. this.lstFiles.Location = new System.Drawing.Point(12, 64);
  69. this.lstFiles.Name = "lstFiles";
  70. this.lstFiles.Size = new System.Drawing.Size(490, 290);
  71. this.lstFiles.TabIndex = 4;
  72. //
  73. // lblCount
  74. //
  75. this.lblCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  76. this.lblCount.AutoSize = true;
  77. this.lblCount.Location = new System.Drawing.Point(12, 364);
  78. this.lblCount.Name = "lblCount";
  79. this.lblCount.Size = new System.Drawing.Size(58, 13);
  80. this.lblCount.TabIndex = 5;
  81. this.lblCount.Text = "Item Count";
  82. //
  83. // txtPattern
  84. //
  85. this.txtPattern.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  86. this.txtPattern.Location = new System.Drawing.Point(325, 12);
  87. this.txtPattern.Name = "txtPattern";
  88. this.txtPattern.Size = new System.Drawing.Size(96, 20);
  89. this.txtPattern.TabIndex = 2;
  90. this.txtPattern.Text = "*.*";
  91. //
  92. // label1
  93. //
  94. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  95. this.label1.AutoSize = true;
  96. this.label1.Location = new System.Drawing.Point(307, 15);
  97. this.label1.Name = "label1";
  98. this.label1.Size = new System.Drawing.Size(12, 13);
  99. this.label1.TabIndex = 1;
  100. this.label1.Text = "\\";
  101. //
  102. // chkDir
  103. //
  104. this.chkDir.AutoSize = true;
  105. this.chkDir.Checked = true;
  106. this.chkDir.CheckState = System.Windows.Forms.CheckState.Checked;
  107. this.chkDir.Location = new System.Drawing.Point(12, 38);
  108. this.chkDir.Name = "chkDir";
  109. this.chkDir.Size = new System.Drawing.Size(68, 17);
  110. this.chkDir.TabIndex = 6;
  111. this.chkDir.Text = "Directory";
  112. this.chkDir.UseVisualStyleBackColor = true;
  113. this.chkDir.CheckedChanged += new System.EventHandler(this.chkModes_CheckedChanged);
  114. //
  115. // chkFiles
  116. //
  117. this.chkFiles.AutoSize = true;
  118. this.chkFiles.Checked = true;
  119. this.chkFiles.CheckState = System.Windows.Forms.CheckState.Checked;
  120. this.chkFiles.Location = new System.Drawing.Point(86, 38);
  121. this.chkFiles.Name = "chkFiles";
  122. this.chkFiles.Size = new System.Drawing.Size(47, 17);
  123. this.chkFiles.TabIndex = 7;
  124. this.chkFiles.Text = "Files";
  125. this.chkFiles.UseVisualStyleBackColor = true;
  126. this.chkFiles.CheckedChanged += new System.EventHandler(this.chkModes_CheckedChanged);
  127. //
  128. // MainForm
  129. //
  130. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  131. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  132. this.ClientSize = new System.Drawing.Size(514, 386);
  133. this.Controls.Add(this.chkFiles);
  134. this.Controls.Add(this.chkDir);
  135. this.Controls.Add(this.label1);
  136. this.Controls.Add(this.txtPattern);
  137. this.Controls.Add(this.lblCount);
  138. this.Controls.Add(this.lstFiles);
  139. this.Controls.Add(this.btnList);
  140. this.Controls.Add(this.txtDir);
  141. this.MinimumSize = new System.Drawing.Size(500, 400);
  142. this.Name = "MainForm";
  143. this.Text = "File Enum Test";
  144. this.ResumeLayout(false);
  145. this.PerformLayout();
  146. }
  147. #endregion
  148. private System.Windows.Forms.TextBox txtDir;
  149. private System.Windows.Forms.Button btnList;
  150. private System.Windows.Forms.ListBox lstFiles;
  151. private System.Windows.Forms.Label lblCount;
  152. private System.Windows.Forms.TextBox txtPattern;
  153. private System.Windows.Forms.Label label1;
  154. private System.Windows.Forms.CheckBox chkDir;
  155. private System.Windows.Forms.CheckBox chkFiles;
  156. }
  157. }