Form7.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 
  2. namespace WindowsFormsApp19
  3. {
  4. partial class Form7
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. 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)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. this.comboBox1 = new System.Windows.Forms.ComboBox();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // listBox1
  35. //
  36. this.listBox1.FormattingEnabled = true;
  37. this.listBox1.Location = new System.Drawing.Point(93, 111);
  38. this.listBox1.Name = "listBox1";
  39. this.listBox1.Size = new System.Drawing.Size(177, 95);
  40. this.listBox1.TabIndex = 0;
  41. this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
  42. //
  43. // comboBox1
  44. //
  45. this.comboBox1.FormattingEnabled = true;
  46. this.comboBox1.Location = new System.Drawing.Point(93, 73);
  47. this.comboBox1.Name = "comboBox1";
  48. this.comboBox1.Size = new System.Drawing.Size(177, 21);
  49. this.comboBox1.TabIndex = 1;
  50. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  51. //
  52. // button1
  53. //
  54. this.button1.Location = new System.Drawing.Point(695, 395);
  55. this.button1.Name = "button1";
  56. this.button1.Size = new System.Drawing.Size(75, 23);
  57. this.button1.TabIndex = 2;
  58. this.button1.Text = "button1";
  59. this.button1.UseVisualStyleBackColor = true;
  60. this.button1.Click += new System.EventHandler(this.button1_Click);
  61. //
  62. // Form7
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(800, 450);
  67. this.Controls.Add(this.button1);
  68. this.Controls.Add(this.comboBox1);
  69. this.Controls.Add(this.listBox1);
  70. this.Name = "Form7";
  71. this.Text = "Form7";
  72. this.Load += new System.EventHandler(this.Form7_Load);
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.ListBox listBox1;
  77. private System.Windows.Forms.ComboBox comboBox1;
  78. private System.Windows.Forms.Button button1;
  79. }
  80. }