added test button for custom sounds

This commit is contained in:
Vitalii Ganzha 2016-01-06 11:01:52 -08:00
parent 879f937517
commit f60d7f3a1d
2 changed files with 48 additions and 5 deletions

View file

@ -33,25 +33,27 @@ namespace VitaliiGanzha.VsDingExtension
this.selectedFileEdit = new System.Windows.Forms.TextBox();
this.chkUseDifferentSound = new System.Windows.Forms.CheckBox();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.btnTest = new System.Windows.Forms.Button();
this.groupBox.SuspendLayout();
this.SuspendLayout();
//
// groupBox
//
this.groupBox.Controls.Add(this.btnTest);
this.groupBox.Controls.Add(this.btnBrowse);
this.groupBox.Controls.Add(this.selectedFileEdit);
this.groupBox.Controls.Add(this.chkUseDifferentSound);
this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox.Location = new System.Drawing.Point(0, 0);
this.groupBox.Name = "groupBox";
this.groupBox.Size = new System.Drawing.Size(323, 78);
this.groupBox.Size = new System.Drawing.Size(323, 66);
this.groupBox.TabIndex = 0;
this.groupBox.TabStop = false;
this.groupBox.Text = "Title";
//
// btnBrowse
//
this.btnBrowse.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowse.Location = new System.Drawing.Point(242, 40);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
@ -64,10 +66,10 @@ namespace VitaliiGanzha.VsDingExtension
//
this.selectedFileEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.selectedFileEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.selectedFileEdit.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.selectedFileEdit.Location = new System.Drawing.Point(6, 40);
this.selectedFileEdit.Name = "selectedFileEdit";
this.selectedFileEdit.Size = new System.Drawing.Size(230, 22);
this.selectedFileEdit.Size = new System.Drawing.Size(183, 22);
this.selectedFileEdit.TabIndex = 1;
//
// chkUseDifferentSound
@ -86,13 +88,24 @@ namespace VitaliiGanzha.VsDingExtension
this.openFileDialog.Filter = "Wav files|*.wav";
this.openFileDialog.Title = "Select custom sound";
//
// btnTest
//
this.btnTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnTest.Location = new System.Drawing.Point(195, 40);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(41, 23);
this.btnTest.TabIndex = 3;
this.btnTest.Text = "Test";
this.btnTest.UseVisualStyleBackColor = true;
this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
//
// SingleSoundSelectControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBox);
this.Name = "SingleSoundSelectControl";
this.Size = new System.Drawing.Size(323, 78);
this.Size = new System.Drawing.Size(323, 66);
this.groupBox.ResumeLayout(false);
this.groupBox.PerformLayout();
this.ResumeLayout(false);
@ -106,5 +119,6 @@ namespace VitaliiGanzha.VsDingExtension
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.TextBox selectedFileEdit;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.Button btnTest;
}
}