124 lines
5.3 KiB
C#
124 lines
5.3 KiB
C#
namespace friction
|
|
{
|
|
partial class PanelResult
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PanelResult));
|
|
this.dgvData = new System.Windows.Forms.DataGridView();
|
|
this.lvColumn = new System.Windows.Forms.ListView();
|
|
this.lvchColumns = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvData
|
|
//
|
|
this.dgvData.AllowUserToAddRows = false;
|
|
this.dgvData.AllowUserToDeleteRows = false;
|
|
this.dgvData.AllowUserToOrderColumns = true;
|
|
this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvData.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgvData.Location = new System.Drawing.Point(3, 3);
|
|
this.dgvData.Name = "dgvData";
|
|
this.dgvData.ReadOnly = true;
|
|
this.dgvData.RowTemplate.Height = 23;
|
|
this.dgvData.Size = new System.Drawing.Size(916, 717);
|
|
this.dgvData.TabIndex = 0;
|
|
//
|
|
// lvColumn
|
|
//
|
|
this.lvColumn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lvColumn.CheckBoxes = true;
|
|
this.lvColumn.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.lvchColumns});
|
|
this.lvColumn.FullRowSelect = true;
|
|
this.lvColumn.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
this.lvColumn.Location = new System.Drawing.Point(722, 3);
|
|
this.lvColumn.MultiSelect = false;
|
|
this.lvColumn.Name = "lvColumn";
|
|
this.lvColumn.Size = new System.Drawing.Size(199, 718);
|
|
this.lvColumn.TabIndex = 1;
|
|
this.lvColumn.UseCompatibleStateImageBehavior = false;
|
|
this.lvColumn.View = System.Windows.Forms.View.Details;
|
|
this.lvColumn.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvColumn_ItemChecked);
|
|
this.lvColumn.SizeChanged += new System.EventHandler(this.lvColumn_SizeChanged);
|
|
//
|
|
// lvchColumns
|
|
//
|
|
this.lvchColumns.Text = "Columns";
|
|
this.lvchColumns.Width = 175;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.ColumnCount = 1;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
|
this.tableLayoutPanel1.Controls.Add(this.dgvData, 0, 0);
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 1;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(922, 723);
|
|
this.tableLayoutPanel1.TabIndex = 2;
|
|
//
|
|
// PanelResult
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(922, 723);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Controls.Add(this.lvColumn);
|
|
this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)(((((WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft | WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockTop)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockBottom)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.Document)));
|
|
this.HideOnClose = true;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "PanelResult";
|
|
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
|
|
this.TabText = "Result Table";
|
|
this.Text = "Result Table";
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvData;
|
|
private System.Windows.Forms.ListView lvColumn;
|
|
private System.Windows.Forms.ColumnHeader lvchColumns;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
}
|
|
} |