/
DataTimeModule
/
DateTime
Обзор
Документация
Войти
/
DataTimeModule
/
DateTime
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
SQLDataDriver/ProductForm.Designer.cs
135 строк
5 KB
Reeltell
upload
27 май 2026, 01:50
27 май 2026, 01:50
f282598
Код
Авторство
О чём код?
namespace SQLDataDriver { partial class ProductForm { private System.ComponentModel.IContainer components = null; protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { userLabel = new Label(); exitButton = new Button(); productsPanel = new FlowLayoutPanel(); searchTextBox = new TextBox(); providerComboBox = new ComboBox(); sortComboBox = new ComboBox(); addButton = new Button(); ordersButton = new Button(); SuspendLayout(); // // userLabel // userLabel.Anchor = AnchorStyles.Top | AnchorStyles.Right; userLabel.Location = new Point(700, 15); userLabel.Name = "userLabel"; userLabel.Size = new Size(190, 25); userLabel.TabIndex = 0; userLabel.TextAlign = ContentAlignment.MiddleRight; // // exitButton // exitButton.Anchor = AnchorStyles.Top | AnchorStyles.Right; exitButton.Location = new Point(900, 12); exitButton.Name = "exitButton"; exitButton.Size = new Size(100, 30); exitButton.TabIndex = 1; exitButton.Text = "Выйти"; exitButton.UseVisualStyleBackColor = true; exitButton.Click += exitButton_Click; // // searchTextBox // searchTextBox.Location = new Point(12, 15); searchTextBox.Name = "searchTextBox"; searchTextBox.PlaceholderText = "Поиск"; searchTextBox.Size = new Size(150, 27); searchTextBox.TabIndex = 3; searchTextBox.TextChanged += filter_Changed; // // providerComboBox // providerComboBox.DropDownStyle = ComboBoxStyle.DropDownList; providerComboBox.Location = new Point(170, 15); providerComboBox.Name = "providerComboBox"; providerComboBox.Size = new Size(170, 28); providerComboBox.TabIndex = 4; providerComboBox.SelectedIndexChanged += filter_Changed; // // sortComboBox // sortComboBox.DropDownStyle = ComboBoxStyle.DropDownList; sortComboBox.Location = new Point(350, 15); sortComboBox.Name = "sortComboBox"; sortComboBox.Size = new Size(140, 28); sortComboBox.TabIndex = 5; sortComboBox.SelectedIndexChanged += filter_Changed; // // addButton // addButton.Location = new Point(500, 14); addButton.Name = "addButton"; addButton.Size = new Size(95, 30); addButton.TabIndex = 6; addButton.Text = "Добавить"; addButton.UseVisualStyleBackColor = true; addButton.Click += addButton_Click; // // ordersButton // ordersButton.Location = new Point(605, 14); ordersButton.Name = "ordersButton"; ordersButton.Size = new Size(85, 30); ordersButton.TabIndex = 7; ordersButton.Text = "Заказы"; ordersButton.UseVisualStyleBackColor = true; ordersButton.Click += ordersButton_Click; // // productsPanel // productsPanel.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; productsPanel.AutoScroll = true; productsPanel.FlowDirection = FlowDirection.TopDown; productsPanel.Location = new Point(12, 55); productsPanel.Name = "productsPanel"; productsPanel.Size = new Size(988, 560); productsPanel.TabIndex = 2; productsPanel.WrapContents = false; // // ProductForm // AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(1012, 627); Controls.Add(ordersButton); Controls.Add(addButton); Controls.Add(sortComboBox); Controls.Add(providerComboBox); Controls.Add(searchTextBox); Controls.Add(productsPanel); Controls.Add(exitButton); Controls.Add(userLabel); MinimumSize = new Size(900, 520); Name = "ProductForm"; StartPosition = FormStartPosition.CenterScreen; Text = "Список товаров"; Load += ProductForm_Load; ResumeLayout(false); } private Label userLabel; private Button exitButton; private FlowLayoutPanel productsPanel; private TextBox searchTextBox; private ComboBox providerComboBox; private ComboBox sortComboBox; private Button addButton; private Button ordersButton; } }