2026-08-10 11:50:48 +00:00
|
|
|
#nullable enable
|
2026-08-10 11:27:28 +00:00
|
|
|
namespace Robovoice.App;
|
|
|
|
|
|
|
|
|
|
partial class VoiceManagerForm
|
|
|
|
|
{
|
|
|
|
|
private System.ComponentModel.IContainer? components = null;
|
|
|
|
|
|
|
|
|
|
private Label lblFilter = null!;
|
|
|
|
|
private TextBox txtFilter = null!;
|
|
|
|
|
private DataGridView gridVoices = null!;
|
|
|
|
|
private Button btnDownload = null!;
|
|
|
|
|
private Button btnRemove = null!;
|
|
|
|
|
private Button btnClose = null!;
|
|
|
|
|
private Label lblStatus = null!;
|
|
|
|
|
private ProgressBar progressBar = null!;
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && components != null)
|
|
|
|
|
components.Dispose();
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
components = new System.ComponentModel.Container();
|
|
|
|
|
|
|
|
|
|
lblFilter = new Label();
|
|
|
|
|
txtFilter = new TextBox();
|
|
|
|
|
gridVoices = new DataGridView();
|
|
|
|
|
btnDownload = new Button();
|
|
|
|
|
btnRemove = new Button();
|
|
|
|
|
btnClose = new Button();
|
|
|
|
|
lblStatus = new Label();
|
|
|
|
|
progressBar = new ProgressBar();
|
|
|
|
|
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)gridVoices).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
|
|
|
|
|
// lblFilter
|
|
|
|
|
lblFilter.Text = "Filter:";
|
|
|
|
|
lblFilter.Location = new Point(12, 15);
|
|
|
|
|
lblFilter.Size = new Size(45, 23);
|
|
|
|
|
lblFilter.TextAlign = ContentAlignment.MiddleLeft;
|
|
|
|
|
|
|
|
|
|
// txtFilter
|
|
|
|
|
txtFilter.Location = new Point(60, 12);
|
|
|
|
|
txtFilter.Size = new Size(300, 23);
|
|
|
|
|
|
|
|
|
|
// gridVoices
|
|
|
|
|
gridVoices.Location = new Point(12, 42);
|
|
|
|
|
gridVoices.Size = new Size(660, 380);
|
|
|
|
|
gridVoices.AllowUserToAddRows = false;
|
|
|
|
|
gridVoices.AllowUserToDeleteRows = false;
|
|
|
|
|
gridVoices.AllowUserToResizeRows = false;
|
|
|
|
|
gridVoices.ReadOnly = true;
|
|
|
|
|
gridVoices.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
|
|
|
gridVoices.MultiSelect = false;
|
|
|
|
|
gridVoices.RowHeadersVisible = false;
|
|
|
|
|
gridVoices.BackgroundColor = SystemColors.Window;
|
|
|
|
|
gridVoices.BorderStyle = BorderStyle.FixedSingle;
|
|
|
|
|
gridVoices.CellBorderStyle = DataGridViewCellBorderStyle.SingleHorizontal;
|
|
|
|
|
gridVoices.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
gridVoices.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
|
|
|
|
|
|
|
|
// btnDownload
|
|
|
|
|
btnDownload.Text = "Download";
|
|
|
|
|
btnDownload.Location = new Point(12, 430);
|
|
|
|
|
btnDownload.Size = new Size(90, 28);
|
|
|
|
|
btnDownload.UseVisualStyleBackColor = true;
|
|
|
|
|
|
|
|
|
|
// btnRemove
|
|
|
|
|
btnRemove.Text = "Remove";
|
|
|
|
|
btnRemove.Location = new Point(108, 430);
|
|
|
|
|
btnRemove.Size = new Size(90, 28);
|
|
|
|
|
btnRemove.UseVisualStyleBackColor = true;
|
|
|
|
|
|
|
|
|
|
// btnClose
|
|
|
|
|
btnClose.Text = "Close";
|
|
|
|
|
btnClose.Location = new Point(582, 430);
|
|
|
|
|
btnClose.Size = new Size(90, 28);
|
|
|
|
|
btnClose.UseVisualStyleBackColor = true;
|
|
|
|
|
|
|
|
|
|
// lblStatus
|
|
|
|
|
lblStatus.Text = "";
|
|
|
|
|
lblStatus.Location = new Point(12, 465);
|
|
|
|
|
lblStatus.Size = new Size(660, 20);
|
|
|
|
|
lblStatus.TextAlign = ContentAlignment.MiddleLeft;
|
|
|
|
|
lblStatus.ForeColor = Color.DarkBlue;
|
|
|
|
|
|
|
|
|
|
// progressBar
|
|
|
|
|
progressBar.Location = new Point(208, 433);
|
|
|
|
|
progressBar.Size = new Size(360, 23);
|
|
|
|
|
progressBar.Visible = false;
|
|
|
|
|
|
|
|
|
|
// VoiceManagerForm
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(684, 495);
|
|
|
|
|
Controls.Add(lblFilter);
|
|
|
|
|
Controls.Add(txtFilter);
|
|
|
|
|
Controls.Add(gridVoices);
|
|
|
|
|
Controls.Add(btnDownload);
|
|
|
|
|
Controls.Add(btnRemove);
|
|
|
|
|
Controls.Add(btnClose);
|
|
|
|
|
Controls.Add(lblStatus);
|
|
|
|
|
Controls.Add(progressBar);
|
|
|
|
|
MinimumSize = new Size(700, 535);
|
|
|
|
|
Text = "Voice Manager";
|
|
|
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
|
|
|
MaximizeBox = false;
|
|
|
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
|
|
|
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)gridVoices).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
}
|