ab56a9bcf7
SVN-Revision: r240
96 lines
3.9 KiB
C#
96 lines
3.9 KiB
C#
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.Control
|
|
{
|
|
partial class FrmProgressBar
|
|
{
|
|
/// <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 Windows Form 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.progressBarTotal = new System.Windows.Forms.ProgressBar();
|
|
this.pl_main_top = new DevExpress.XtraEditors.PanelControl();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pl_main_top)).BeginInit();
|
|
this.pl_main_top.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressBarTotal
|
|
//
|
|
this.progressBarTotal.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.progressBarTotal.Location = new System.Drawing.Point(3, 18);
|
|
this.progressBarTotal.Name = "progressBarTotal";
|
|
this.progressBarTotal.Size = new System.Drawing.Size(436, 20);
|
|
this.progressBarTotal.TabIndex = 8;
|
|
//
|
|
// pl_main_top
|
|
//
|
|
this.pl_main_top.Appearance.BackColor = System.Drawing.Color.Transparent;
|
|
this.pl_main_top.Appearance.Options.UseBackColor = true;
|
|
this.pl_main_top.Controls.Add(this.groupBox1);
|
|
this.pl_main_top.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pl_main_top.Location = new System.Drawing.Point(0, 0);
|
|
this.pl_main_top.Name = "pl_main_top";
|
|
this.pl_main_top.Size = new System.Drawing.Size(446, 45);
|
|
this.pl_main_top.TabIndex = 9;
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.progressBarTotal);
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.groupBox1.Location = new System.Drawing.Point(2, 2);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(442, 41);
|
|
this.groupBox1.TabIndex = 9;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "正在执行";
|
|
//
|
|
// FrmProgressBar
|
|
//
|
|
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
|
this.Appearance.Options.UseBackColor = true;
|
|
this.Appearance.Options.UseFont = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(446, 45);
|
|
this.Controls.Add(this.pl_main_top);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "FrmProgressBar";
|
|
this.Text = "执行中";
|
|
((System.ComponentModel.ISupportInitialize)(this.pl_main_top)).EndInit();
|
|
this.pl_main_top.ResumeLayout(false);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private ProgressBar progressBarTotal;
|
|
private DevExpress.XtraEditors.PanelControl pl_main_top;
|
|
private GroupBox groupBox1;
|
|
}
|
|
} |