Готовая первая лаба

This commit is contained in:
nezui1
2024-11-24 18:25:32 +04:00
parent 26c76e03d3
commit ab83e06788
36 changed files with 2257 additions and 263 deletions

View File

@@ -0,0 +1,122 @@
namespace ProjectCompRepair.Forms
{
partial class FormService
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelType = new Label();
labelPrice = new Label();
checkedListBoxType = new CheckedListBox();
numericUpDownPrice = new NumericUpDown();
buttonSave = new Button();
buttonCancel = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).BeginInit();
SuspendLayout();
//
// labelType
//
labelType.AutoSize = true;
labelType.Location = new Point(38, 70);
labelType.Name = "labelType";
labelType.Size = new Size(83, 20);
labelType.TabIndex = 0;
labelType.Text = "Тип услуги";
//
// labelPrice
//
labelPrice.AutoSize = true;
labelPrice.Location = new Point(38, 217);
labelPrice.Name = "labelPrice";
labelPrice.Size = new Size(45, 20);
labelPrice.TabIndex = 1;
labelPrice.Text = "Цена";
//
// checkedListBoxType
//
checkedListBoxType.FormattingEnabled = true;
checkedListBoxType.Location = new Point(145, 49);
checkedListBoxType.Name = "checkedListBoxType";
checkedListBoxType.Size = new Size(230, 114);
checkedListBoxType.TabIndex = 3;
//
// numericUpDownPrice
//
numericUpDownPrice.DecimalPlaces = 2;
numericUpDownPrice.Location = new Point(145, 217);
numericUpDownPrice.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
numericUpDownPrice.Name = "numericUpDownPrice";
numericUpDownPrice.Size = new Size(230, 27);
numericUpDownPrice.TabIndex = 4;
//
// buttonSave
//
buttonSave.Location = new Point(38, 324);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(281, 324);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormService
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(424, 393);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(numericUpDownPrice);
Controls.Add(checkedListBoxType);
Controls.Add(labelPrice);
Controls.Add(labelType);
Name = "FormService";
Text = "Услуга";
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelType;
private Label labelPrice;
private CheckedListBox checkedListBoxType;
private NumericUpDown numericUpDownPrice;
private Button buttonSave;
private Button buttonCancel;
}
}