Form1.Designer.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. namespace WindowsFormsApp1
  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">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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.label1 = new System.Windows.Forms.Label();
  29. this.Minutes = new System.Windows.Forms.TextBox();
  30. this.Calculate = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.radioButton1 = new System.Windows.Forms.RadioButton();
  33. this.radioButton2 = new System.Windows.Forms.RadioButton();
  34. this.SummIt = new System.Windows.Forms.Label();
  35. this.Summ = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(12, 9);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(199, 13);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Введите время разговоров за месяц:";
  46. //
  47. // Minutes
  48. //
  49. this.Minutes.Location = new System.Drawing.Point(217, 6);
  50. this.Minutes.Name = "Minutes";
  51. this.Minutes.Size = new System.Drawing.Size(207, 20);
  52. this.Minutes.TabIndex = 1;
  53. this.Minutes.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Minutes_KeyPress);
  54. //
  55. // Calculate
  56. //
  57. this.Calculate.Location = new System.Drawing.Point(15, 35);
  58. this.Calculate.Name = "Calculate";
  59. this.Calculate.Size = new System.Drawing.Size(75, 23);
  60. this.Calculate.TabIndex = 2;
  61. this.Calculate.Text = "Рассчитать";
  62. this.Calculate.UseVisualStyleBackColor = true;
  63. this.Calculate.Click += new System.EventHandler(this.Calculate_Click);
  64. //
  65. // button2
  66. //
  67. this.button2.Location = new System.Drawing.Point(217, 35);
  68. this.button2.Name = "button2";
  69. this.button2.Size = new System.Drawing.Size(207, 23);
  70. this.button2.TabIndex = 3;
  71. this.button2.Text = "Сформировать квинтацию";
  72. this.button2.UseVisualStyleBackColor = true;
  73. this.button2.Click += new System.EventHandler(this.button2_Click);
  74. //
  75. // radioButton1
  76. //
  77. this.radioButton1.AutoSize = true;
  78. this.radioButton1.Location = new System.Drawing.Point(430, 7);
  79. this.radioButton1.Name = "radioButton1";
  80. this.radioButton1.Size = new System.Drawing.Size(67, 17);
  81. this.radioButton1.TabIndex = 4;
  82. this.radioButton1.TabStop = true;
  83. this.radioButton1.Text = "Тариф 1";
  84. this.radioButton1.UseVisualStyleBackColor = true;
  85. //
  86. // radioButton2
  87. //
  88. this.radioButton2.AutoSize = true;
  89. this.radioButton2.Location = new System.Drawing.Point(430, 41);
  90. this.radioButton2.Name = "radioButton2";
  91. this.radioButton2.Size = new System.Drawing.Size(67, 17);
  92. this.radioButton2.TabIndex = 5;
  93. this.radioButton2.TabStop = true;
  94. this.radioButton2.Text = "Тариф 2";
  95. this.radioButton2.UseVisualStyleBackColor = true;
  96. //
  97. // SummIt
  98. //
  99. this.SummIt.AutoSize = true;
  100. this.SummIt.Location = new System.Drawing.Point(12, 77);
  101. this.SummIt.Name = "SummIt";
  102. this.SummIt.Size = new System.Drawing.Size(58, 13);
  103. this.SummIt.TabIndex = 6;
  104. this.SummIt.Text = "К оплате: ";
  105. //
  106. // Summ
  107. //
  108. this.Summ.AutoSize = true;
  109. this.Summ.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  110. this.Summ.ForeColor = System.Drawing.Color.Red;
  111. this.Summ.Location = new System.Drawing.Point(12, 209);
  112. this.Summ.Name = "Summ";
  113. this.Summ.Size = new System.Drawing.Size(228, 13);
  114. this.Summ.TabIndex = 7;
  115. this.Summ.Text = "Минут свверх установленной нормы:";
  116. this.Summ.Visible = false;
  117. //
  118. // Form1
  119. //
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  122. this.ClientSize = new System.Drawing.Size(510, 231);
  123. this.Controls.Add(this.Summ);
  124. this.Controls.Add(this.SummIt);
  125. this.Controls.Add(this.radioButton2);
  126. this.Controls.Add(this.radioButton1);
  127. this.Controls.Add(this.button2);
  128. this.Controls.Add(this.Calculate);
  129. this.Controls.Add(this.Minutes);
  130. this.Controls.Add(this.label1);
  131. this.Name = "Form1";
  132. this.Text = "Телефонная компания";
  133. this.ResumeLayout(false);
  134. this.PerformLayout();
  135. }
  136. #endregion
  137. private System.Windows.Forms.Label label1;
  138. private System.Windows.Forms.TextBox Minutes;
  139. private System.Windows.Forms.Button Calculate;
  140. private System.Windows.Forms.Button button2;
  141. private System.Windows.Forms.RadioButton radioButton1;
  142. private System.Windows.Forms.RadioButton radioButton2;
  143. private System.Windows.Forms.Label SummIt;
  144. private System.Windows.Forms.Label Summ;
  145. }
  146. }