using Core.Common.Utils.Aop;
namespace Application.Ringtoets.Forms.ProgressDialog
{
partial class ProgressDialog
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (!disposing)
{
base.Dispose(false);
return;
}
using (InvokeRequiredAttribute.BlockInvokeCallsDuringDispose())
{
if (components != null)
{
components.Dispose();
}
base.Dispose(true);
}
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProgressDialog));
this.btnCancel = new System.Windows.Forms.Button();
this.dgvActivities = new System.Windows.Forms.DataGridView();
this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Progress = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.lblTitle = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dgvActivities)).BeginInit();
this.SuspendLayout();
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// dgvActivities
//
this.dgvActivities.AllowUserToAddRows = false;
this.dgvActivities.AllowUserToDeleteRows = false;
this.dgvActivities.AllowUserToResizeColumns = false;
this.dgvActivities.AllowUserToResizeRows = false;
resources.ApplyResources(this.dgvActivities, "dgvActivities");
this.dgvActivities.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvActivities.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.NameColumn,
this.Progress});
this.dgvActivities.Name = "dgvActivities";
this.dgvActivities.RowHeadersVisible = false;
//
// NameColumn
//
this.NameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.NameColumn.DataPropertyName = "Name";
resources.ApplyResources(this.NameColumn, "NameColumn");
this.NameColumn.Name = "NameColumn";
//
// Progress
//
this.Progress.DataPropertyName = "ProgressText";
resources.ApplyResources(this.Progress, "Progress");
this.Progress.Name = "Progress";
//
// lblTitle
//
resources.ApplyResources(this.lblTitle, "lblTitle");
this.lblTitle.Name = "lblTitle";
//
// ProgressDialog
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ControlBox = false;
this.Controls.Add(this.lblTitle);
this.Controls.Add(this.dgvActivities);
this.Controls.Add(this.btnCancel);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ProgressDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
((System.ComponentModel.ISupportInitialize)(this.dgvActivities)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.DataGridView dgvActivities;
private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn Progress;
}
}