Form1.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. namespace SimpleZeichenfunktion
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Erforderliche Designervariable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Verwendete Ressourcen bereinigen.
  11. /// </summary>
  12. /// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls 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 Vom Windows Form-Designer generierter Code
  22. /// <summary>
  23. /// Erforderliche Methode für die Designerunterstützung.
  24. /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.listBox1 = new System.Windows.Forms.ListBox();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // label1
  35. //
  36. this.label1.AutoSize = true;
  37. this.label1.Location = new System.Drawing.Point(402, 51);
  38. this.label1.Name = "label1";
  39. this.label1.Size = new System.Drawing.Size(64, 13);
  40. this.label1.TabIndex = 0;
  41. this.label1.Text = "Koordinaten";
  42. //
  43. // listBox1
  44. //
  45. this.listBox1.FormattingEnabled = true;
  46. this.listBox1.Location = new System.Drawing.Point(405, 109);
  47. this.listBox1.Name = "listBox1";
  48. this.listBox1.Size = new System.Drawing.Size(120, 160);
  49. this.listBox1.TabIndex = 1;
  50. this.listBox1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listBox1_MouseDoubleClick);
  51. //
  52. // timer1
  53. //
  54. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  55. //
  56. // Form1
  57. //
  58. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  59. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  60. this.BackColor = System.Drawing.SystemColors.Control;
  61. this.ClientSize = new System.Drawing.Size(800, 450);
  62. this.Controls.Add(this.listBox1);
  63. this.Controls.Add(this.label1);
  64. this.Name = "Form1";
  65. this.Text = "Form1";
  66. this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseClick);
  67. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
  68. this.ResumeLayout(false);
  69. this.PerformLayout();
  70. }
  71. #endregion
  72. private System.Windows.Forms.Label label1;
  73. private System.Windows.Forms.ListBox listBox1;
  74. private System.Windows.Forms.Timer timer1;
  75. }
  76. }