дизайн это моё всё

This commit is contained in:
the 2024-06-25 22:22:21 +04:00
parent 8ed478c392
commit 47f012cfda
8 changed files with 119 additions and 4106 deletions

View File

@ -57,7 +57,7 @@
// //
// dataGridView // dataGridView
// //
dataGridView.BackgroundColor = Color.SteelBlue; dataGridView.BackgroundColor = Color.FromArgb(160, 160, 220);
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Dock = DockStyle.Top; dataGridView.Dock = DockStyle.Top;
dataGridView.Location = new Point(0, 24); dataGridView.Location = new Point(0, 24);
@ -67,7 +67,7 @@
// //
// buttonCreateSupply // buttonCreateSupply
// //
buttonCreateSupply.BackColor = Color.MediumSpringGreen; buttonCreateSupply.BackColor = Color.FromArgb(192, 255, 192);
buttonCreateSupply.Location = new Point(6, 24); buttonCreateSupply.Location = new Point(6, 24);
buttonCreateSupply.Name = "buttonCreateSupply"; buttonCreateSupply.Name = "buttonCreateSupply";
buttonCreateSupply.Size = new Size(154, 23); buttonCreateSupply.Size = new Size(154, 23);
@ -153,7 +153,7 @@
// pictureBox1 // pictureBox1
// //
pictureBox1.BackColor = Color.Transparent; pictureBox1.BackColor = Color.Transparent;
pictureBox1.BackgroundImage = (Image)resources.GetObject("pictureBox1.BackgroundImage"); pictureBox1.BackgroundImage = Properties.Resources.favicon;
pictureBox1.BackgroundImageLayout = ImageLayout.Zoom; pictureBox1.BackgroundImageLayout = ImageLayout.Zoom;
pictureBox1.BorderStyle = BorderStyle.FixedSingle; pictureBox1.BorderStyle = BorderStyle.FixedSingle;
pictureBox1.InitialImage = (Image)resources.GetObject("pictureBox1.InitialImage"); pictureBox1.InitialImage = (Image)resources.GetObject("pictureBox1.InitialImage");
@ -179,7 +179,7 @@
// //
// pictureBox2 // pictureBox2
// //
pictureBox2.BackgroundImage = (Image)resources.GetObject("pictureBox2.BackgroundImage"); pictureBox2.BackgroundImage = Properties.Resources.pdf_icon_on_transparent_background_free_png_2869912988;
pictureBox2.BackgroundImageLayout = ImageLayout.Zoom; pictureBox2.BackgroundImageLayout = ImageLayout.Zoom;
pictureBox2.Location = new Point(323, 0); pictureBox2.Location = new Point(323, 0);
pictureBox2.Name = "pictureBox2"; pictureBox2.Name = "pictureBox2";
@ -237,7 +237,7 @@
// //
AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage"); BackgroundImage = Properties.Resources._9AZKH1_1911594361;
ClientSize = new Size(901, 384); ClientSize = new Size(901, 384);
Controls.Add(label1); Controls.Add(label1);
Controls.Add(groupBox2); Controls.Add(groupBox2);

File diff suppressed because it is too large Load Diff

View File

@ -37,30 +37,36 @@
buttonDeleteProduct = new Button(); buttonDeleteProduct = new Button();
buttonUpdateProduct = new Button(); buttonUpdateProduct = new Button();
buttonAddProduct = new Button(); buttonAddProduct = new Button();
label1 = new Label();
buttonSave = new Button(); buttonSave = new Button();
buttonCancel = new Button(); buttonCancel = new Button();
textBoxPrice = new TextBox(); textBoxPrice = new TextBox();
comboBoxSupplier = new ComboBox(); comboBoxSupplier = new ComboBox();
groupBox1 = new GroupBox();
label1 = new Label();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
groupBoxProducts.SuspendLayout(); groupBoxProducts.SuspendLayout();
groupBox1.SuspendLayout();
SuspendLayout(); SuspendLayout();
// //
// textBoxName // textBoxName
// //
textBoxName.Location = new Point(18, 41); textBoxName.Dock = DockStyle.Fill;
textBoxName.Font = new Font("Segoe UI", 10F);
textBoxName.Location = new Point(3, 21);
textBoxName.Multiline = true; textBoxName.Multiline = true;
textBoxName.Name = "textBoxName"; textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(434, 103); textBoxName.Size = new Size(244, 426);
textBoxName.TabIndex = 0; textBoxName.TabIndex = 0;
// //
// dataGridView // dataGridView
// //
dataGridView.BackgroundColor = Color.AliceBlue;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ProductId, ProductName, ProductAmount }); dataGridView.Columns.AddRange(new DataGridViewColumn[] { ProductId, ProductName, ProductAmount });
dataGridView.Location = new Point(6, 22); dataGridView.Dock = DockStyle.Top;
dataGridView.Location = new Point(3, 21);
dataGridView.Name = "dataGridView"; dataGridView.Name = "dataGridView";
dataGridView.Size = new Size(423, 241); dataGridView.Size = new Size(405, 241);
dataGridView.TabIndex = 1; dataGridView.TabIndex = 1;
// //
// ProductId // ProductId
@ -72,6 +78,7 @@
// //
// ProductName // ProductName
// //
ProductName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
ProductName.HeaderText = "Название"; ProductName.HeaderText = "Название";
ProductName.Name = "ProductName"; ProductName.Name = "ProductName";
ProductName.ReadOnly = true; ProductName.ReadOnly = true;
@ -84,30 +91,37 @@
// //
// groupBoxProducts // groupBoxProducts
// //
groupBoxProducts.BackColor = Color.Transparent;
groupBoxProducts.Controls.Add(buttonDeleteProduct); groupBoxProducts.Controls.Add(buttonDeleteProduct);
groupBoxProducts.Controls.Add(buttonUpdateProduct); groupBoxProducts.Controls.Add(buttonUpdateProduct);
groupBoxProducts.Controls.Add(buttonAddProduct); groupBoxProducts.Controls.Add(buttonAddProduct);
groupBoxProducts.Controls.Add(dataGridView); groupBoxProducts.Controls.Add(dataGridView);
groupBoxProducts.Location = new Point(12, 150); groupBoxProducts.Dock = DockStyle.Left;
groupBoxProducts.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
groupBoxProducts.ForeColor = SystemColors.Control;
groupBoxProducts.Location = new Point(0, 0);
groupBoxProducts.Name = "groupBoxProducts"; groupBoxProducts.Name = "groupBoxProducts";
groupBoxProducts.Size = new Size(776, 288); groupBoxProducts.Size = new Size(411, 450);
groupBoxProducts.TabIndex = 2; groupBoxProducts.TabIndex = 2;
groupBoxProducts.TabStop = false; groupBoxProducts.TabStop = false;
groupBoxProducts.Text = "Товары"; groupBoxProducts.Text = "Товары";
// //
// buttonDeleteProduct // buttonDeleteProduct
// //
buttonDeleteProduct.Location = new Point(435, 132); buttonDeleteProduct.BackColor = Color.FromArgb(255, 192, 192);
buttonDeleteProduct.ForeColor = SystemColors.ActiveCaptionText;
buttonDeleteProduct.Location = new Point(213, 268);
buttonDeleteProduct.Name = "buttonDeleteProduct"; buttonDeleteProduct.Name = "buttonDeleteProduct";
buttonDeleteProduct.Size = new Size(126, 49); buttonDeleteProduct.Size = new Size(126, 49);
buttonDeleteProduct.TabIndex = 4; buttonDeleteProduct.TabIndex = 4;
buttonDeleteProduct.Text = "Удалить"; buttonDeleteProduct.Text = "Удалить";
buttonDeleteProduct.UseVisualStyleBackColor = true; buttonDeleteProduct.UseVisualStyleBackColor = false;
buttonDeleteProduct.Click += buttonDeleteProduct_Click; buttonDeleteProduct.Click += buttonDeleteProduct_Click;
// //
// buttonUpdateProduct // buttonUpdateProduct
// //
buttonUpdateProduct.Location = new Point(435, 77); buttonUpdateProduct.ForeColor = SystemColors.ActiveCaptionText;
buttonUpdateProduct.Location = new Point(12, 323);
buttonUpdateProduct.Name = "buttonUpdateProduct"; buttonUpdateProduct.Name = "buttonUpdateProduct";
buttonUpdateProduct.Size = new Size(126, 49); buttonUpdateProduct.Size = new Size(126, 49);
buttonUpdateProduct.TabIndex = 3; buttonUpdateProduct.TabIndex = 3;
@ -117,28 +131,22 @@
// //
// buttonAddProduct // buttonAddProduct
// //
buttonAddProduct.Location = new Point(435, 22); buttonAddProduct.BackColor = Color.FromArgb(192, 255, 192);
buttonAddProduct.ForeColor = SystemColors.ActiveCaptionText;
buttonAddProduct.Location = new Point(12, 268);
buttonAddProduct.Name = "buttonAddProduct"; buttonAddProduct.Name = "buttonAddProduct";
buttonAddProduct.Size = new Size(126, 49); buttonAddProduct.Size = new Size(126, 49);
buttonAddProduct.TabIndex = 2; buttonAddProduct.TabIndex = 2;
buttonAddProduct.Text = "Добавить"; buttonAddProduct.Text = "Добавить";
buttonAddProduct.UseVisualStyleBackColor = true; buttonAddProduct.UseVisualStyleBackColor = false;
buttonAddProduct.Click += buttonAddProduct_Click; buttonAddProduct.Click += buttonAddProduct_Click;
// //
// label1
//
label1.AutoSize = true;
label1.Location = new Point(18, 23);
label1.Name = "label1";
label1.Size = new Size(100, 15);
label1.TabIndex = 3;
label1.Text = "Общие сведения";
//
// buttonSave // buttonSave
// //
buttonSave.Location = new Point(654, 40); buttonSave.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
buttonSave.Location = new Point(679, 353);
buttonSave.Name = "buttonSave"; buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23); buttonSave.Size = new Size(109, 41);
buttonSave.TabIndex = 4; buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить"; buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true; buttonSave.UseVisualStyleBackColor = true;
@ -146,9 +154,10 @@
// //
// buttonCancel // buttonCancel
// //
buttonCancel.Location = new Point(654, 88); buttonCancel.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
buttonCancel.Location = new Point(679, 400);
buttonCancel.Name = "buttonCancel"; buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23); buttonCancel.Size = new Size(109, 38);
buttonCancel.TabIndex = 5; buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена"; buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true; buttonCancel.UseVisualStyleBackColor = true;
@ -164,28 +173,57 @@
// comboBoxSupplier // comboBoxSupplier
// //
comboBoxSupplier.FormattingEnabled = true; comboBoxSupplier.FormattingEnabled = true;
comboBoxSupplier.Location = new Point(473, 41); comboBoxSupplier.Location = new Point(679, 283);
comboBoxSupplier.Name = "comboBoxSupplier"; comboBoxSupplier.Name = "comboBoxSupplier";
comboBoxSupplier.Size = new Size(121, 23); comboBoxSupplier.Size = new Size(109, 23);
comboBoxSupplier.TabIndex = 7; comboBoxSupplier.TabIndex = 7;
// //
// groupBox1
//
groupBox1.BackColor = Color.Transparent;
groupBox1.Controls.Add(textBoxName);
groupBox1.Dock = DockStyle.Left;
groupBox1.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
groupBox1.ForeColor = SystemColors.Control;
groupBox1.Location = new Point(411, 0);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(250, 450);
groupBox1.TabIndex = 8;
groupBox1.TabStop = false;
groupBox1.Text = "Общие сведения";
//
// label1
//
label1.AutoSize = true;
label1.BackColor = Color.Transparent;
label1.Font = new Font("Segoe UI", 12F, FontStyle.Bold);
label1.ForeColor = SystemColors.Control;
label1.Location = new Point(679, 259);
label1.Name = "label1";
label1.Size = new Size(98, 21);
label1.TabIndex = 9;
label1.Text = "Поставщик";
//
// FormSupply // FormSupply
// //
AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = Properties.Resources._9AZKH1_1911594361;
ClientSize = new Size(800, 450); ClientSize = new Size(800, 450);
Controls.Add(label1);
Controls.Add(groupBox1);
Controls.Add(buttonCancel);
Controls.Add(comboBoxSupplier); Controls.Add(comboBoxSupplier);
Controls.Add(textBoxPrice); Controls.Add(textBoxPrice);
Controls.Add(buttonCancel);
Controls.Add(buttonSave); Controls.Add(buttonSave);
Controls.Add(label1);
Controls.Add(groupBoxProducts); Controls.Add(groupBoxProducts);
Controls.Add(textBoxName);
Name = "FormSupply"; Name = "FormSupply";
Text = "FormSupply"; Text = "FormSupply";
Load += FormSupply_Load; Load += FormSupply_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
groupBoxProducts.ResumeLayout(false); groupBoxProducts.ResumeLayout(false);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
ResumeLayout(false); ResumeLayout(false);
PerformLayout(); PerformLayout();
} }
@ -194,17 +232,18 @@
private TextBox textBoxName; private TextBox textBoxName;
private DataGridView dataGridView; private DataGridView dataGridView;
private DataGridViewTextBoxColumn ProductId;
private DataGridViewTextBoxColumn ProductName;
private DataGridViewTextBoxColumn ProductAmount;
private GroupBox groupBoxProducts; private GroupBox groupBoxProducts;
private Button buttonAddProduct; private Button buttonAddProduct;
private Label label1;
private Button buttonUpdateProduct; private Button buttonUpdateProduct;
private Button buttonDeleteProduct; private Button buttonDeleteProduct;
private Button buttonSave; private Button buttonSave;
private Button buttonCancel; private Button buttonCancel;
private TextBox textBoxPrice; private TextBox textBoxPrice;
private ComboBox comboBoxSupplier; private ComboBox comboBoxSupplier;
private GroupBox groupBox1;
private DataGridViewTextBoxColumn ProductId;
private DataGridViewTextBoxColumn ProductName;
private DataGridViewTextBoxColumn ProductAmount;
private Label label1;
} }
} }

View File

@ -59,5 +59,35 @@ namespace WinFormsApp.Properties {
resourceCulture = value; resourceCulture = value;
} }
} }
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _9AZKH1_1911594361 {
get {
object obj = ResourceManager.GetObject("9AZKH1-1911594361", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap favicon {
get {
object obj = ResourceManager.GetObject("favicon", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap pdf_icon_on_transparent_background_free_png_2869912988 {
get {
object obj = ResourceManager.GetObject("pdf-icon-on-transparent-background-free-png-2869912988", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
} }
} }

View File

@ -117,4 +117,14 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="9AZKH1-1911594361" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\9AZKH1-1911594361.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="pdf-icon-on-transparent-background-free-png-2869912988" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\pdf-icon-on-transparent-background-free-png-2869912988.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="favicon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\favicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root> </root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB