FileList.Designer.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. namespace Waka.Lego.FileTool.Views
  2. {
  3. partial class FileList
  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.components = new System.ComponentModel.Container();
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. this.timer1 = new System.Windows.Forms.Timer(this.components);
  31. this.SuspendLayout();
  32. //
  33. // listBox1
  34. //
  35. this.listBox1.FormattingEnabled = true;
  36. this.listBox1.ItemHeight = 12;
  37. this.listBox1.Location = new System.Drawing.Point(12, 12);
  38. this.listBox1.Name = "listBox1";
  39. this.listBox1.Size = new System.Drawing.Size(260, 232);
  40. this.listBox1.TabIndex = 0;
  41. //
  42. // timer1
  43. //
  44. this.timer1.Enabled = true;
  45. this.timer1.Interval = 10000;
  46. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  47. //
  48. // FileList
  49. //
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  52. this.ClientSize = new System.Drawing.Size(284, 261);
  53. this.Controls.Add(this.listBox1);
  54. this.Name = "FileList";
  55. this.Text = "FileList";
  56. this.Load += new System.EventHandler(this.FileList_Load);
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. private System.Windows.Forms.ListBox listBox1;
  61. private System.Windows.Forms.Timer timer1;
  62. }
  63. }