mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
reorganizing a bit
This commit is contained in:
94
CUETools/frmChoice.Designer.cs
generated
94
CUETools/frmChoice.Designer.cs
generated
@@ -30,7 +30,7 @@ namespace JDP
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChoice));
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.buttonOk = new System.Windows.Forms.Button();
|
||||
this.listChoices = new System.Windows.Forms.ListView();
|
||||
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
|
||||
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
|
||||
@@ -40,25 +40,30 @@ namespace JDP
|
||||
this.TrackNo = new System.Windows.Forms.ColumnHeader();
|
||||
this.Start = new System.Windows.Forms.ColumnHeader();
|
||||
this.Length = new System.Windows.Forms.ColumnHeader();
|
||||
this.btnEdit = new System.Windows.Forms.Button();
|
||||
this.chkFixEncoding = new System.Windows.Forms.CheckBox();
|
||||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.listMetadata = new System.Windows.Forms.ListView();
|
||||
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
|
||||
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
|
||||
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
this.tableLayoutPanel2.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// button1
|
||||
// buttonOk
|
||||
//
|
||||
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
resources.ApplyResources(this.button1, "button1");
|
||||
this.button1.Name = "button1";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
resources.ApplyResources(this.buttonOk, "buttonOk");
|
||||
this.buttonOk.Name = "buttonOk";
|
||||
this.buttonOk.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// listChoices
|
||||
//
|
||||
this.listChoices.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.columnHeader1});
|
||||
resources.ApplyResources(this.listChoices, "listChoices");
|
||||
this.listChoices.FullRowSelect = true;
|
||||
this.listChoices.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
||||
this.listChoices.HideSelection = false;
|
||||
resources.ApplyResources(this.listChoices, "listChoices");
|
||||
this.listChoices.MultiSelect = false;
|
||||
this.listChoices.Name = "listChoices";
|
||||
this.listChoices.ShowItemToolTips = true;
|
||||
@@ -89,12 +94,12 @@ namespace JDP
|
||||
//
|
||||
// listTracks
|
||||
//
|
||||
resources.ApplyResources(this.listTracks, "listTracks");
|
||||
this.listTracks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.Title,
|
||||
this.TrackNo,
|
||||
this.Start,
|
||||
this.Length});
|
||||
resources.ApplyResources(this.listTracks, "listTracks");
|
||||
this.listTracks.FullRowSelect = true;
|
||||
this.listTracks.GridLines = true;
|
||||
this.listTracks.LabelEdit = true;
|
||||
@@ -123,45 +128,69 @@ namespace JDP
|
||||
//
|
||||
resources.ApplyResources(this.Length, "Length");
|
||||
//
|
||||
// btnEdit
|
||||
// tableLayoutPanel1
|
||||
//
|
||||
resources.ApplyResources(this.btnEdit, "btnEdit");
|
||||
this.btnEdit.Name = "btnEdit";
|
||||
this.btnEdit.UseVisualStyleBackColor = true;
|
||||
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
|
||||
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
||||
this.tableLayoutPanel1.Controls.Add(this.listMetadata, 0, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 4);
|
||||
this.tableLayoutPanel1.Controls.Add(this.textBox1, 0, 1);
|
||||
this.tableLayoutPanel1.Controls.Add(this.listTracks, 0, 3);
|
||||
this.tableLayoutPanel1.Controls.Add(this.listChoices, 0, 0);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
//
|
||||
// chkFixEncoding
|
||||
// listMetadata
|
||||
//
|
||||
resources.ApplyResources(this.chkFixEncoding, "chkFixEncoding");
|
||||
this.chkFixEncoding.Name = "chkFixEncoding";
|
||||
this.chkFixEncoding.UseVisualStyleBackColor = true;
|
||||
this.chkFixEncoding.CheckedChanged += new System.EventHandler(this.chkFixEncoding_CheckedChanged);
|
||||
this.listMetadata.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.columnHeader2,
|
||||
this.columnHeader3});
|
||||
resources.ApplyResources(this.listMetadata, "listMetadata");
|
||||
this.listMetadata.FullRowSelect = true;
|
||||
this.listMetadata.GridLines = true;
|
||||
this.listMetadata.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
||||
this.listMetadata.LabelEdit = true;
|
||||
this.listMetadata.Name = "listMetadata";
|
||||
this.listMetadata.UseCompatibleStateImageBehavior = false;
|
||||
this.listMetadata.View = System.Windows.Forms.View.Details;
|
||||
this.listMetadata.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listMetadata_AfterLabelEdit);
|
||||
this.listMetadata.DoubleClick += new System.EventHandler(this.listMetadata_DoubleClick);
|
||||
this.listMetadata.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listMetadata_KeyDown);
|
||||
//
|
||||
// columnHeader2
|
||||
//
|
||||
resources.ApplyResources(this.columnHeader2, "columnHeader2");
|
||||
//
|
||||
// columnHeader3
|
||||
//
|
||||
resources.ApplyResources(this.columnHeader3, "columnHeader3");
|
||||
//
|
||||
// tableLayoutPanel2
|
||||
//
|
||||
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
|
||||
this.tableLayoutPanel2.Controls.Add(this.buttonOk, 3, 0);
|
||||
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
|
||||
//
|
||||
// frmChoice
|
||||
//
|
||||
this.AcceptButton = this.button1;
|
||||
this.AcceptButton = this.buttonOk;
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.chkFixEncoding);
|
||||
this.Controls.Add(this.btnEdit);
|
||||
this.Controls.Add(this.listTracks);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Controls.Add(this.listChoices);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(this.tableLayoutPanel1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "frmChoice";
|
||||
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
||||
this.Load += new System.EventHandler(this.frmChoice_Load);
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmChoice_FormClosing);
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.tableLayoutPanel1.PerformLayout();
|
||||
this.tableLayoutPanel2.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Button buttonOk;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader1;
|
||||
private System.Windows.Forms.ImageList imageList1;
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
@@ -170,8 +199,11 @@ namespace JDP
|
||||
private System.Windows.Forms.ColumnHeader Title;
|
||||
private System.Windows.Forms.ColumnHeader TrackNo;
|
||||
private System.Windows.Forms.ColumnHeader Length;
|
||||
private System.Windows.Forms.Button btnEdit;
|
||||
private System.Windows.Forms.ColumnHeader Start;
|
||||
private System.Windows.Forms.CheckBox chkFixEncoding;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
|
||||
private System.Windows.Forms.ListView listMetadata;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader2;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user