Form1.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. namespace _05_UDP_PNG_SendReceive
  2. {
  3. partial class Form1
  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.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.timer1 = new System.Windows.Forms.Timer(this.components);
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(23, 12);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(156, 63);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "Receive fila .png";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // button2
  47. //
  48. this.button2.Location = new System.Drawing.Point(677, 12);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(155, 63);
  51. this.button2.TabIndex = 1;
  52. this.button2.Text = "Send file .png";
  53. this.button2.UseVisualStyleBackColor = true;
  54. this.button2.Click += new System.EventHandler(this.button2_Click);
  55. //
  56. // pictureBox1
  57. //
  58. this.pictureBox1.Location = new System.Drawing.Point(24, 102);
  59. this.pictureBox1.Name = "pictureBox1";
  60. this.pictureBox1.Size = new System.Drawing.Size(492, 339);
  61. this.pictureBox1.TabIndex = 2;
  62. this.pictureBox1.TabStop = false;
  63. //
  64. // timer1
  65. //
  66. this.timer1.Enabled = true;
  67. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  68. //
  69. // Form1
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.ClientSize = new System.Drawing.Size(859, 469);
  74. this.Controls.Add(this.pictureBox1);
  75. this.Controls.Add(this.button2);
  76. this.Controls.Add(this.button1);
  77. this.Name = "Form1";
  78. this.Text = "Form1";
  79. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  80. this.ResumeLayout(false);
  81. }
  82. #endregion
  83. private System.Windows.Forms.Button button1;
  84. private System.Windows.Forms.Button button2;
  85. private System.Windows.Forms.PictureBox pictureBox1;
  86. private System.Windows.Forms.Timer timer1;
  87. }
  88. }