mirror of
https://github.com/Orbmu2k/nvidiaProfileInspector.git
synced 2025-12-23 23:18:07 -05:00
180 lines
9.1 KiB
C#
180 lines
9.1 KiB
C#
namespace nspector
|
|
{
|
|
partial class frmExportProfiles
|
|
{
|
|
/// <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.lvProfiles = new System.Windows.Forms.ListView();
|
|
this.chProfileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.lProfiles = new System.Windows.Forms.Label();
|
|
this.btnExport = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnSelAll = new System.Windows.Forms.Button();
|
|
this.btnSelNone = new System.Windows.Forms.Button();
|
|
this.btnInvertSelection = new System.Windows.Forms.Button();
|
|
this.cbIncludePredefined = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// lvProfiles
|
|
//
|
|
this.lvProfiles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lvProfiles.CheckBoxes = true;
|
|
this.lvProfiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.chProfileName});
|
|
this.lvProfiles.FullRowSelect = true;
|
|
this.lvProfiles.GridLines = true;
|
|
this.lvProfiles.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
|
this.lvProfiles.Location = new System.Drawing.Point(12, 40);
|
|
this.lvProfiles.MultiSelect = false;
|
|
this.lvProfiles.Name = "lvProfiles";
|
|
this.lvProfiles.Size = new System.Drawing.Size(492, 382);
|
|
this.lvProfiles.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.lvProfiles.TabIndex = 0;
|
|
this.lvProfiles.UseCompatibleStateImageBehavior = false;
|
|
this.lvProfiles.View = System.Windows.Forms.View.Details;
|
|
this.lvProfiles.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvProfiles_ItemChecked);
|
|
//
|
|
// chProfileName
|
|
//
|
|
this.chProfileName.Text = "ProfileName";
|
|
this.chProfileName.Width = 420;
|
|
//
|
|
// lProfiles
|
|
//
|
|
this.lProfiles.AutoSize = true;
|
|
this.lProfiles.Location = new System.Drawing.Point(9, 12);
|
|
this.lProfiles.Name = "lProfiles";
|
|
this.lProfiles.Size = new System.Drawing.Size(184, 13);
|
|
this.lProfiles.TabIndex = 1;
|
|
this.lProfiles.Text = "Select the profiles you want to export:";
|
|
//
|
|
// btnExport
|
|
//
|
|
this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnExport.Enabled = false;
|
|
this.btnExport.Location = new System.Drawing.Point(429, 451);
|
|
this.btnExport.Name = "btnExport";
|
|
this.btnExport.Size = new System.Drawing.Size(75, 23);
|
|
this.btnExport.TabIndex = 2;
|
|
this.btnExport.Text = "Export";
|
|
this.btnExport.UseVisualStyleBackColor = true;
|
|
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.Location = new System.Drawing.Point(348, 451);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 3;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnSelAll
|
|
//
|
|
this.btnSelAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnSelAll.Location = new System.Drawing.Point(12, 451);
|
|
this.btnSelAll.Name = "btnSelAll";
|
|
this.btnSelAll.Size = new System.Drawing.Size(75, 23);
|
|
this.btnSelAll.TabIndex = 4;
|
|
this.btnSelAll.Text = "Select All";
|
|
this.btnSelAll.UseVisualStyleBackColor = true;
|
|
this.btnSelAll.Click += new System.EventHandler(this.btnSelAll_Click);
|
|
//
|
|
// btnSelNone
|
|
//
|
|
this.btnSelNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnSelNone.Location = new System.Drawing.Point(93, 451);
|
|
this.btnSelNone.Name = "btnSelNone";
|
|
this.btnSelNone.Size = new System.Drawing.Size(75, 23);
|
|
this.btnSelNone.TabIndex = 4;
|
|
this.btnSelNone.Text = "Select None";
|
|
this.btnSelNone.UseVisualStyleBackColor = true;
|
|
this.btnSelNone.Click += new System.EventHandler(this.btnSelNone_Click);
|
|
//
|
|
// btnInvertSelection
|
|
//
|
|
this.btnInvertSelection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnInvertSelection.Location = new System.Drawing.Point(174, 451);
|
|
this.btnInvertSelection.Name = "btnInvertSelection";
|
|
this.btnInvertSelection.Size = new System.Drawing.Size(100, 23);
|
|
this.btnInvertSelection.TabIndex = 4;
|
|
this.btnInvertSelection.Text = "Invert Selection";
|
|
this.btnInvertSelection.UseVisualStyleBackColor = true;
|
|
this.btnInvertSelection.Click += new System.EventHandler(this.btnInvertSelection_Click);
|
|
//
|
|
// cbIncludePredefined
|
|
//
|
|
this.cbIncludePredefined.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cbIncludePredefined.AutoSize = true;
|
|
this.cbIncludePredefined.Location = new System.Drawing.Point(12, 428);
|
|
this.cbIncludePredefined.Name = "cbIncludePredefined";
|
|
this.cbIncludePredefined.Size = new System.Drawing.Size(153, 17);
|
|
this.cbIncludePredefined.TabIndex = 5;
|
|
this.cbIncludePredefined.Text = "Include predefined settings";
|
|
this.cbIncludePredefined.UseVisualStyleBackColor = true;
|
|
//
|
|
// frmExportProfiles
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(516, 487);
|
|
this.Controls.Add(this.cbIncludePredefined);
|
|
this.Controls.Add(this.btnInvertSelection);
|
|
this.Controls.Add(this.btnSelNone);
|
|
this.Controls.Add(this.btnSelAll);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnExport);
|
|
this.Controls.Add(this.lProfiles);
|
|
this.Controls.Add(this.lvProfiles);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(464, 319);
|
|
this.Name = "frmExportProfiles";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "frmExportProfiles";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView lvProfiles;
|
|
private System.Windows.Forms.ColumnHeader chProfileName;
|
|
private System.Windows.Forms.Label lProfiles;
|
|
private System.Windows.Forms.Button btnExport;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnSelAll;
|
|
private System.Windows.Forms.Button btnSelNone;
|
|
private System.Windows.Forms.Button btnInvertSelection;
|
|
private System.Windows.Forms.CheckBox cbIncludePredefined;
|
|
}
|
|
} |