mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
c38affcded
* All renderdoc code up to this point was written by me, history is available by request
128 lines
5.8 KiB
C#
128 lines
5.8 KiB
C#
namespace renderdocui.Windows.Dialogs
|
|
{
|
|
partial class ColumnSelector
|
|
{
|
|
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.columnList = new System.Windows.Forms.ListView();
|
|
this.ok = new System.Windows.Forms.Button();
|
|
this.cancel = new System.Windows.Forms.Button();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.ColumnCount = 3;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.columnList, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.ok, 1, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.cancel, 2, 2);
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 3;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(292, 273);
|
|
this.tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.tableLayoutPanel1.SetColumnSpan(this.label1, 3);
|
|
this.label1.Location = new System.Drawing.Point(3, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Padding = new System.Windows.Forms.Padding(5);
|
|
this.label1.Size = new System.Drawing.Size(184, 23);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Select the columns that will appear.";
|
|
//
|
|
// columnList
|
|
//
|
|
this.columnList.CheckBoxes = true;
|
|
this.tableLayoutPanel1.SetColumnSpan(this.columnList, 3);
|
|
this.columnList.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.columnList.FullRowSelect = true;
|
|
this.columnList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
this.columnList.Location = new System.Drawing.Point(3, 26);
|
|
this.columnList.Name = "columnList";
|
|
this.columnList.Size = new System.Drawing.Size(286, 215);
|
|
this.columnList.TabIndex = 1;
|
|
this.columnList.UseCompatibleStateImageBehavior = false;
|
|
this.columnList.View = System.Windows.Forms.View.List;
|
|
this.columnList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.columnList_ItemCheck);
|
|
//
|
|
// ok
|
|
//
|
|
this.ok.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.ok.Location = new System.Drawing.Point(133, 247);
|
|
this.ok.Name = "ok";
|
|
this.ok.Size = new System.Drawing.Size(75, 23);
|
|
this.ok.TabIndex = 2;
|
|
this.ok.Text = "OK";
|
|
this.ok.UseVisualStyleBackColor = true;
|
|
//
|
|
// cancel
|
|
//
|
|
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancel.Location = new System.Drawing.Point(214, 247);
|
|
this.cancel.Name = "cancel";
|
|
this.cancel.Size = new System.Drawing.Size(75, 23);
|
|
this.cancel.TabIndex = 3;
|
|
this.cancel.Text = "Cancel";
|
|
this.cancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// ColumnSelector
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(292, 273);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "ColumnSelector";
|
|
this.Text = "ColumnSelector";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ListView columnList;
|
|
private System.Windows.Forms.Button ok;
|
|
private System.Windows.Forms.Button cancel;
|
|
}
|
|
} |