/
DataTimeModule
/
DateTime
Обзор
Документация
Войти
/
DataTimeModule
/
DateTime
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
SQLDataDriver/ProductEditForm.Designer.cs
212 строк
8 KB
Reeltell
upload
27 май 2026, 01:50
27 май 2026, 01:50
f282598
Код
Авторство
О чём код?
namespace SQLDataDriver { partial class ProductEditForm { private System.ComponentModel.IContainer components = null; protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { articleLabel = new Label(); articleTextBox = new TextBox(); titleTextBox = new TextBox(); categoryComboBox = new ComboBox(); descriptionTextBox = new TextBox(); manufacturerComboBox = new ComboBox(); providerComboBox = new ComboBox(); priceTextBox = new TextBox(); unitComboBox = new ComboBox(); stockTextBox = new TextBox(); discountTextBox = new TextBox(); photoBox = new PictureBox(); photoButton = new Button(); saveButton = new Button(); cancelButton = new Button(); ((System.ComponentModel.ISupportInitialize)photoBox).BeginInit(); SuspendLayout(); // // articleLabel // articleLabel.AutoSize = true; articleLabel.Location = new Point(20, 20); articleLabel.Name = "articleLabel"; articleLabel.Size = new Size(63, 20); articleLabel.TabIndex = 0; articleLabel.Text = "Артикул"; // // articleTextBox // articleTextBox.Location = new Point(150, 17); articleTextBox.Name = "articleTextBox"; articleTextBox.ReadOnly = true; articleTextBox.Size = new Size(250, 27); articleTextBox.TabIndex = 1; // // titleTextBox // titleTextBox.Location = new Point(20, 60); titleTextBox.Name = "titleTextBox"; titleTextBox.PlaceholderText = "Наименование"; titleTextBox.Size = new Size(380, 27); titleTextBox.TabIndex = 2; // // categoryComboBox // categoryComboBox.DropDownStyle = ComboBoxStyle.DropDownList; categoryComboBox.Location = new Point(20, 100); categoryComboBox.Name = "categoryComboBox"; categoryComboBox.Size = new Size(380, 28); categoryComboBox.TabIndex = 3; // // descriptionTextBox // descriptionTextBox.Location = new Point(20, 140); descriptionTextBox.Multiline = true; descriptionTextBox.Name = "descriptionTextBox"; descriptionTextBox.PlaceholderText = "Описание"; descriptionTextBox.Size = new Size(380, 80); descriptionTextBox.TabIndex = 4; // // manufacturerComboBox // manufacturerComboBox.DropDownStyle = ComboBoxStyle.DropDownList; manufacturerComboBox.Location = new Point(20, 235); manufacturerComboBox.Name = "manufacturerComboBox"; manufacturerComboBox.Size = new Size(380, 28); manufacturerComboBox.TabIndex = 5; // // providerComboBox // providerComboBox.DropDownStyle = ComboBoxStyle.DropDownList; providerComboBox.Location = new Point(20, 275); providerComboBox.Name = "providerComboBox"; providerComboBox.Size = new Size(380, 28); providerComboBox.TabIndex = 6; // // priceTextBox // priceTextBox.Location = new Point(20, 315); priceTextBox.Name = "priceTextBox"; priceTextBox.PlaceholderText = "Цена"; priceTextBox.Size = new Size(180, 27); priceTextBox.TabIndex = 7; // // unitComboBox // unitComboBox.DropDownStyle = ComboBoxStyle.DropDownList; unitComboBox.Location = new Point(220, 315); unitComboBox.Name = "unitComboBox"; unitComboBox.Size = new Size(180, 28); unitComboBox.TabIndex = 8; // // stockTextBox // stockTextBox.Location = new Point(20, 355); stockTextBox.Name = "stockTextBox"; stockTextBox.PlaceholderText = "Количество"; stockTextBox.Size = new Size(180, 27); stockTextBox.TabIndex = 9; // // discountTextBox // discountTextBox.Location = new Point(220, 355); discountTextBox.Name = "discountTextBox"; discountTextBox.PlaceholderText = "Скидка"; discountTextBox.Size = new Size(180, 27); discountTextBox.TabIndex = 10; // // photoBox // photoBox.BorderStyle = BorderStyle.FixedSingle; photoBox.Location = new Point(430, 20); photoBox.Name = "photoBox"; photoBox.Size = new Size(300, 200); photoBox.SizeMode = PictureBoxSizeMode.Zoom; photoBox.TabIndex = 11; photoBox.TabStop = false; // // photoButton // photoButton.Location = new Point(430, 235); photoButton.Name = "photoButton"; photoButton.Size = new Size(300, 32); photoButton.TabIndex = 12; photoButton.Text = "Выбрать фото"; photoButton.UseVisualStyleBackColor = true; photoButton.Click += photoButton_Click; // // saveButton // saveButton.Location = new Point(430, 350); saveButton.Name = "saveButton"; saveButton.Size = new Size(140, 34); saveButton.TabIndex = 13; saveButton.Text = "Сохранить"; saveButton.UseVisualStyleBackColor = true; saveButton.Click += saveButton_Click; // // cancelButton // cancelButton.Location = new Point(590, 350); cancelButton.Name = "cancelButton"; cancelButton.Size = new Size(140, 34); cancelButton.TabIndex = 14; cancelButton.Text = "Отмена"; cancelButton.UseVisualStyleBackColor = true; cancelButton.Click += cancelButton_Click; // // ProductEditForm // AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(755, 405); Controls.Add(cancelButton); Controls.Add(saveButton); Controls.Add(photoButton); Controls.Add(photoBox); Controls.Add(discountTextBox); Controls.Add(stockTextBox); Controls.Add(unitComboBox); Controls.Add(priceTextBox); Controls.Add(providerComboBox); Controls.Add(manufacturerComboBox); Controls.Add(descriptionTextBox); Controls.Add(categoryComboBox); Controls.Add(titleTextBox); Controls.Add(articleTextBox); Controls.Add(articleLabel); FormBorderStyle = FormBorderStyle.FixedSingle; MaximizeBox = false; Name = "ProductEditForm"; StartPosition = FormStartPosition.CenterScreen; Text = "Товар"; Load += ProductEditForm_Load; ((System.ComponentModel.ISupportInitialize)photoBox).EndInit(); ResumeLayout(false); PerformLayout(); } private Label articleLabel; private TextBox articleTextBox; private TextBox titleTextBox; private ComboBox categoryComboBox; private TextBox descriptionTextBox; private ComboBox manufacturerComboBox; private ComboBox providerComboBox; private TextBox priceTextBox; private ComboBox unitComboBox; private TextBox stockTextBox; private TextBox discountTextBox; private PictureBox photoBox; private Button photoButton; private Button saveButton; private Button cancelButton; } }