Advertisement
Tzuro

Untitled

Jul 22nd, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. namespace Przelicznik
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  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.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.txtPredkoscMb = new System.Windows.Forms.TextBox();
  33. this.txtPobieranieMB = new System.Windows.Forms.TextBox();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.btnPrzelicz = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  42. this.label1.Location = new System.Drawing.Point(25, 9);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(646, 31);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "Prędkość internetu w Megabitach na sekundę (Mb/s)";
  47. //
  48. // txtPredkoscMb
  49. //
  50. this.txtPredkoscMb.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  51. this.txtPredkoscMb.Location = new System.Drawing.Point(205, 43);
  52. this.txtPredkoscMb.Name = "txtPredkoscMb";
  53. this.txtPredkoscMb.Size = new System.Drawing.Size(286, 38);
  54. this.txtPredkoscMb.TabIndex = 1;
  55. //
  56. // txtPobieranieMB
  57. //
  58. this.txtPobieranieMB.Enabled = false;
  59. this.txtPobieranieMB.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  60. this.txtPobieranieMB.Location = new System.Drawing.Point(205, 191);
  61. this.txtPobieranieMB.Name = "txtPobieranieMB";
  62. this.txtPobieranieMB.Size = new System.Drawing.Size(286, 38);
  63. this.txtPobieranieMB.TabIndex = 3;
  64. //
  65. // label2
  66. //
  67. this.label2.AutoSize = true;
  68. this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  69. this.label2.Location = new System.Drawing.Point(16, 148);
  70. this.label2.Name = "label2";
  71. this.label2.Size = new System.Drawing.Size(664, 31);
  72. this.label2.TabIndex = 2;
  73. this.label2.Text = "Prędkość internetu w Megabajtach na sekundę (MB/s)";
  74. //
  75. // btnPrzelicz
  76. //
  77. this.btnPrzelicz.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  78. this.btnPrzelicz.Location = new System.Drawing.Point(270, 87);
  79. this.btnPrzelicz.Name = "btnPrzelicz";
  80. this.btnPrzelicz.Size = new System.Drawing.Size(159, 55);
  81. this.btnPrzelicz.TabIndex = 4;
  82. this.btnPrzelicz.Text = "Przelicz";
  83. this.btnPrzelicz.UseVisualStyleBackColor = true;
  84. this.btnPrzelicz.Click += new System.EventHandler(this.button1_Click);
  85. //
  86. // Form1
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(762, 247);
  91. this.Controls.Add(this.btnPrzelicz);
  92. this.Controls.Add(this.txtPobieranieMB);
  93. this.Controls.Add(this.label2);
  94. this.Controls.Add(this.txtPredkoscMb);
  95. this.Controls.Add(this.label1);
  96. this.Name = "Form1";
  97. this.Text = "Przelicznik";
  98. this.ResumeLayout(false);
  99. this.PerformLayout();
  100.  
  101. }
  102.  
  103. #endregion
  104.  
  105. private System.Windows.Forms.Label label1;
  106. private System.Windows.Forms.TextBox txtPredkoscMb;
  107. private System.Windows.Forms.TextBox txtPobieranieMB;
  108. private System.Windows.Forms.Label label2;
  109. private System.Windows.Forms.Button btnPrzelicz;
  110. }
  111. }
  112.  
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement