66 lines
2.6 KiB
C#
66 lines
2.6 KiB
C#
|
namespace UI_WinForms.Components
|
|||
|
{
|
|||
|
sealed partial class TranslationProgress
|
|||
|
{
|
|||
|
/// <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 Component 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.nxProgressBar = new UI_WinForms.Components.NXProgressBar();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// nxProgressBar
|
|||
|
//
|
|||
|
this.nxProgressBar.AppendPercentageToText = true;
|
|||
|
this.nxProgressBar.BackColor = System.Drawing.Color.LightSkyBlue;
|
|||
|
this.nxProgressBar.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.nxProgressBar.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|||
|
this.nxProgressBar.InformationText = "Overall translation progress";
|
|||
|
this.nxProgressBar.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.nxProgressBar.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0);
|
|||
|
this.nxProgressBar.Name = "nxProgressBar";
|
|||
|
this.nxProgressBar.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
|
|||
|
this.nxProgressBar.PercentFloat = 0F;
|
|||
|
this.nxProgressBar.PercentInt = 0;
|
|||
|
this.nxProgressBar.Size = new System.Drawing.Size(832, 68);
|
|||
|
this.nxProgressBar.TabIndex = 0;
|
|||
|
//
|
|||
|
// TranslationProgress
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.nxProgressBar);
|
|||
|
this.Name = "TranslationProgress";
|
|||
|
this.Size = new System.Drawing.Size(832, 68);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private NXProgressBar nxProgressBar;
|
|||
|
}
|
|||
|
}
|