Form1.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace Y.Test
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.flexiblePanel1 = new Y.Skin.YoPanel.FlexiblePanel();
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.flexiblePanel1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // flexiblePanel1
  36. //
  37. this.flexiblePanel1.Controls.Add(this.listBox1);
  38. this.flexiblePanel1.Controls.Add(this.label1);
  39. this.flexiblePanel1.Controls.Add(this.button1);
  40. this.flexiblePanel1.Location = new System.Drawing.Point(109, 112);
  41. this.flexiblePanel1.Name = "flexiblePanel1";
  42. this.flexiblePanel1.Size = new System.Drawing.Size(516, 499);
  43. this.flexiblePanel1.TabIndex = 0;
  44. //
  45. // listBox1
  46. //
  47. this.listBox1.FormattingEnabled = true;
  48. this.listBox1.ItemHeight = 12;
  49. this.listBox1.Location = new System.Drawing.Point(66, 271);
  50. this.listBox1.Name = "listBox1";
  51. this.listBox1.Size = new System.Drawing.Size(120, 88);
  52. this.listBox1.TabIndex = 2;
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(111, 161);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(41, 12);
  60. this.label1.TabIndex = 1;
  61. this.label1.Text = "label1";
  62. //
  63. // button1
  64. //
  65. this.button1.Location = new System.Drawing.Point(111, 69);
  66. this.button1.Name = "button1";
  67. this.button1.Size = new System.Drawing.Size(75, 23);
  68. this.button1.TabIndex = 0;
  69. this.button1.Text = "button1";
  70. this.button1.UseVisualStyleBackColor = true;
  71. //
  72. // Form1
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(1144, 727);
  77. this.Controls.Add(this.flexiblePanel1);
  78. this.Name = "Form1";
  79. this.Text = "Form1";
  80. this.Load += new System.EventHandler(this.Form1_Load);
  81. this.flexiblePanel1.ResumeLayout(false);
  82. this.flexiblePanel1.PerformLayout();
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. private Skin.YoPanel.FlexiblePanel flexiblePanel1;
  87. private System.Windows.Forms.ListBox listBox1;
  88. private System.Windows.Forms.Label label1;
  89. private System.Windows.Forms.Button button1;
  90. }
  91. }