Version Beta 1.5.0.0 as marked by the aboutForm dialog.

This commit is contained in:
2021-01-21 13:54:52 -06:00
parent 12c9237d50
commit 406760bca2
8 changed files with 241 additions and 162 deletions
+19 -3
View File
@@ -42,6 +42,7 @@
this.soundboardTabControl = new System.Windows.Forms.TabControl();
this.loopSelectedSoundCheckBox = new System.Windows.Forms.CheckBox();
this.fileSystemWatcherMain = new System.IO.FileSystemWatcher();
this.label1 = new System.Windows.Forms.Label();
this.mainMenu.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.randomIterationNumericUpDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcherMain)).BeginInit();
@@ -52,7 +53,8 @@
this.btnRandom.Location = new System.Drawing.Point(7, 545);
this.btnRandom.Name = "btnRandom";
this.btnRandom.Size = new System.Drawing.Size(81, 23);
this.btnRandom.TabIndex = 1;
this.btnRandom.TabIndex = 0;
this.btnRandom.TabStop = false;
this.btnRandom.Text = "Random";
this.btnRandom.UseVisualStyleBackColor = true;
this.btnRandom.Click += new System.EventHandler(this.btnRandom_Click);
@@ -132,7 +134,7 @@
0});
this.randomIterationNumericUpDown.Name = "randomIterationNumericUpDown";
this.randomIterationNumericUpDown.Size = new System.Drawing.Size(58, 20);
this.randomIterationNumericUpDown.TabIndex = 4;
this.randomIterationNumericUpDown.TabIndex = 1;
this.randomIterationNumericUpDown.TabStop = false;
this.randomIterationNumericUpDown.Value = new decimal(new int[] {
1,
@@ -148,6 +150,7 @@
this.soundboardTabControl.SelectedIndex = 0;
this.soundboardTabControl.Size = new System.Drawing.Size(425, 506);
this.soundboardTabControl.TabIndex = 0;
this.soundboardTabControl.TabStop = false;
//
// loopSelectedSoundCheckBox
//
@@ -155,7 +158,8 @@
this.loopSelectedSoundCheckBox.Location = new System.Drawing.Point(158, 549);
this.loopSelectedSoundCheckBox.Name = "loopSelectedSoundCheckBox";
this.loopSelectedSoundCheckBox.Size = new System.Drawing.Size(129, 17);
this.loopSelectedSoundCheckBox.TabIndex = 3;
this.loopSelectedSoundCheckBox.TabIndex = 2;
this.loopSelectedSoundCheckBox.TabStop = false;
this.loopSelectedSoundCheckBox.Text = "Loop Selected Sound";
this.loopSelectedSoundCheckBox.UseVisualStyleBackColor = true;
this.loopSelectedSoundCheckBox.CheckedChanged += new System.EventHandler(this.loopSelectedSoundCheckBox_CheckedChanged);
@@ -165,17 +169,28 @@
this.fileSystemWatcherMain.EnableRaisingEvents = true;
this.fileSystemWatcherMain.SynchronizingObject = this;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(294, 548);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 4;
this.label1.Text = "label1";
//
// formMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(425, 578);
this.Controls.Add(this.label1);
this.Controls.Add(this.loopSelectedSoundCheckBox);
this.Controls.Add(this.randomIterationNumericUpDown);
this.Controls.Add(this.soundboardTabControl);
this.Controls.Add(this.btnRandom);
this.Controls.Add(this.mainMenu);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.MainMenuStrip = this.mainMenu;
this.Name = "formMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
@@ -205,6 +220,7 @@
private System.Windows.Forms.ToolStripMenuItem mainMenuHelpAbout;
private System.Windows.Forms.CheckBox loopSelectedSoundCheckBox;
private System.IO.FileSystemWatcher fileSystemWatcherMain;
public System.Windows.Forms.Label label1;
}
}