86 lines
3.6 KiB
C#
86 lines
3.6 KiB
C#
namespace Dem2
|
|
{
|
|
partial class SupplierListForm
|
|
{
|
|
/// <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()
|
|
{
|
|
this.dataGridViewSuppliers = new System.Windows.Forms.DataGridView();
|
|
this.ColumnSupplierName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnRating = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnStartDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewSuppliers)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridViewSuppliers
|
|
//
|
|
this.dataGridViewSuppliers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewSuppliers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnSupplierName,
|
|
this.ColumnRating,
|
|
this.ColumnStartDate});
|
|
this.dataGridViewSuppliers.Location = new System.Drawing.Point(24, 13);
|
|
this.dataGridViewSuppliers.Name = "dataGridViewSuppliers";
|
|
this.dataGridViewSuppliers.Size = new System.Drawing.Size(764, 323);
|
|
this.dataGridViewSuppliers.TabIndex = 0;
|
|
//
|
|
// ColumnSupplierName
|
|
//
|
|
this.ColumnSupplierName.HeaderText = "Наименование поставщика";
|
|
this.ColumnSupplierName.Name = "ColumnSupplierName";
|
|
//
|
|
// ColumnRating
|
|
//
|
|
this.ColumnRating.HeaderText = "Рейтинг";
|
|
this.ColumnRating.Name = "ColumnRating";
|
|
//
|
|
// ColumnStartDate
|
|
//
|
|
this.ColumnStartDate.HeaderText = "Дата начала сотрудничества";
|
|
this.ColumnStartDate.Name = "ColumnStartDate";
|
|
//
|
|
// SupplierListForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.dataGridViewSuppliers);
|
|
this.Name = "SupplierListForm";
|
|
this.Text = "SupplierListForm";
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewSuppliers)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridViewSuppliers;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnSupplierName;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnRating;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnStartDate;
|
|
}
|
|
} |