DepartmentProject/DepartmentPortal/Common/DesktopTools/Forms/FormDisplayErrors.Designer.cs

92 lines
3.4 KiB
C#

namespace DesktopTools.Forms
{
partial class FormDisplayErrors
{
/// <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.dataGridViewErrors = new System.Windows.Forms.DataGridView();
this.ColumnKey = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnMessage = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewErrors)).BeginInit();
this.SuspendLayout();
//
// dataGridViewErrors
//
this.dataGridViewErrors.AllowUserToAddRows = false;
this.dataGridViewErrors.AllowUserToDeleteRows = false;
this.dataGridViewErrors.AllowUserToResizeRows = false;
this.dataGridViewErrors.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
this.dataGridViewErrors.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewErrors.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnKey,
this.ColumnMessage});
this.dataGridViewErrors.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewErrors.Location = new System.Drawing.Point(0, 0);
this.dataGridViewErrors.MultiSelect = false;
this.dataGridViewErrors.Name = "dataGridViewErrors";
this.dataGridViewErrors.ReadOnly = true;
this.dataGridViewErrors.RowHeadersVisible = false;
this.dataGridViewErrors.RowTemplate.Height = 25;
this.dataGridViewErrors.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewErrors.Size = new System.Drawing.Size(588, 450);
this.dataGridViewErrors.TabIndex = 0;
//
// ColumnKey
//
this.ColumnKey.HeaderText = "Тип ошибки";
this.ColumnKey.Name = "ColumnKey";
this.ColumnKey.ReadOnly = true;
this.ColumnKey.Width = 200;
//
// ColumnMessage
//
this.ColumnMessage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ColumnMessage.HeaderText = "Сообщение";
this.ColumnMessage.Name = "ColumnMessage";
this.ColumnMessage.ReadOnly = true;
//
// FormDisplayErrors
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(588, 450);
this.Controls.Add(this.dataGridViewErrors);
this.Name = "FormDisplayErrors";
this.Text = "Ошибки";
((System.ComponentModel.ISupportInitialize)(this.dataGridViewErrors)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridViewErrors;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnKey;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnMessage;
}
}