diff --git a/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.Designer.cs b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.Designer.cs new file mode 100644 index 0000000..6c218f3 --- /dev/null +++ b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.Designer.cs @@ -0,0 +1,75 @@ +namespace AppShopInternetOption19.Forms +{ + partial class FormGuide + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + dataGridViewGuide = new DataGridView(); + OrderStatus = new DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)dataGridViewGuide).BeginInit(); + SuspendLayout(); + // + // dataGridViewGuide + // + dataGridViewGuide.AllowUserToResizeColumns = false; + dataGridViewGuide.AllowUserToResizeRows = false; + dataGridViewGuide.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; + dataGridViewGuide.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; + dataGridViewGuide.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridViewGuide.Columns.AddRange(new DataGridViewColumn[] { OrderStatus }); + dataGridViewGuide.Location = new Point(12, 12); + dataGridViewGuide.MultiSelect = false; + dataGridViewGuide.Name = "dataGridViewGuide"; + dataGridViewGuide.RowHeadersVisible = false; + dataGridViewGuide.RowHeadersWidth = 51; + dataGridViewGuide.Size = new Size(282, 411); + dataGridViewGuide.TabIndex = 0; + // + // OrderStatus + // + OrderStatus.HeaderText = "Статус заказа"; + OrderStatus.MinimumWidth = 6; + OrderStatus.Name = "OrderStatus"; + // + // FormGuide + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(306, 435); + Controls.Add(dataGridViewGuide); + Name = "FormGuide"; + Text = "Справочник"; + ((System.ComponentModel.ISupportInitialize)dataGridViewGuide).EndInit(); + ResumeLayout(false); + } + + #endregion + + private DataGridView dataGridViewGuide; + private DataGridViewTextBoxColumn OrderStatus; + } +} \ No newline at end of file diff --git a/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.cs b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.cs new file mode 100644 index 0000000..6e9d187 --- /dev/null +++ b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AppShopInternetOption19.Forms +{ + public partial class FormGuide : Form + { + public FormGuide() + { + InitializeComponent(); + } + } +} diff --git a/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.resx b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.resx new file mode 100644 index 0000000..f84df8b --- /dev/null +++ b/UserComponentsOption19/AppShopInternetOption19/Forms/FormGuide.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + \ No newline at end of file