1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
namespace KeePass.Forms
{
partial class StatusProgressForm
{
/// <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.m_pbTotal = new System.Windows.Forms.ProgressBar();
this.m_btnCancel = new System.Windows.Forms.Button();
this.m_lblTotal = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// m_pbTotal
//
this.m_pbTotal.Location = new System.Drawing.Point(12, 29);
this.m_pbTotal.Name = "m_pbTotal";
this.m_pbTotal.Size = new System.Drawing.Size(378, 16);
this.m_pbTotal.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.m_pbTotal.TabIndex = 0;
//
// m_btnCancel
//
this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.m_btnCancel.Location = new System.Drawing.Point(316, 59);
this.m_btnCancel.Name = "m_btnCancel";
this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
this.m_btnCancel.TabIndex = 1;
this.m_btnCancel.Text = "&Cancel";
this.m_btnCancel.UseVisualStyleBackColor = true;
this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
//
// m_lblTotal
//
this.m_lblTotal.Location = new System.Drawing.Point(9, 9);
this.m_lblTotal.Name = "m_lblTotal";
this.m_lblTotal.Size = new System.Drawing.Size(382, 17);
this.m_lblTotal.TabIndex = 2;
//
// StatusProgressForm
//
this.AcceptButton = this.m_btnCancel;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnCancel;
this.ClientSize = new System.Drawing.Size(403, 94);
this.ControlBox = false;
this.Controls.Add(this.m_lblTotal);
this.Controls.Add(this.m_btnCancel);
this.Controls.Add(this.m_pbTotal);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "StatusProgressForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "<>";
this.Load += new System.EventHandler(this.OnFormLoad);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ProgressBar m_pbTotal;
private System.Windows.Forms.Button m_btnCancel;
private System.Windows.Forms.Label m_lblTotal;
}
}
|