mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
6b7cd1d9e5
- CA-359068¨Match the whole datasource name (previously the wrong one was picked for disk read/write latency). - New/edit Graph dialog: differentiate between enabled/disabled datasources and visible/hidden (known/unknown units; the latter may mean no data). - Some refactoring. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
139 lines
5.9 KiB
C#
139 lines
5.9 KiB
C#
using System;
|
|
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class ActionProgressDialog
|
|
{
|
|
/// <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 (action != null)
|
|
{
|
|
action.Completed -= action_Completed;
|
|
action.Changed -= action_Changed;
|
|
}
|
|
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActionProgressDialog));
|
|
this.labelStatus = new System.Windows.Forms.Label();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.icon = new System.Windows.Forms.PictureBox();
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.labelBottom = new System.Windows.Forms.Label();
|
|
this.labelException = new System.Windows.Forms.Label();
|
|
this.labelSubActionStatus = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelStatus
|
|
//
|
|
resources.ApplyResources(this.labelStatus, "labelStatus");
|
|
this.labelStatus.Name = "labelStatus";
|
|
//
|
|
// progressBar1
|
|
//
|
|
resources.ApplyResources(this.progressBar1, "progressBar1");
|
|
this.progressBar1.Name = "progressBar1";
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.labelStatus, 1, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.icon, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.buttonClose, 1, 5);
|
|
this.tableLayoutPanel1.Controls.Add(this.buttonCancel, 2, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.progressBar1, 1, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelBottom, 1, 3);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelException, 1, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelSubActionStatus, 1, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// icon
|
|
//
|
|
resources.ApplyResources(this.icon, "icon");
|
|
this.icon.Name = "icon";
|
|
this.tableLayoutPanel1.SetRowSpan(this.icon, 5);
|
|
this.icon.TabStop = false;
|
|
//
|
|
// buttonClose
|
|
//
|
|
resources.ApplyResources(this.buttonClose, "buttonClose");
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.VisibleChanged += new System.EventHandler(this.buttonClose_VisibleChanged);
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// labelBottom
|
|
//
|
|
resources.ApplyResources(this.labelBottom, "labelBottom");
|
|
this.labelBottom.Name = "labelBottom";
|
|
//
|
|
// labelException
|
|
//
|
|
resources.ApplyResources(this.labelException, "labelException");
|
|
this.labelException.Name = "labelException";
|
|
//
|
|
// labelSubActionStatus
|
|
//
|
|
resources.ApplyResources(this.labelSubActionStatus, "labelSubActionStatus");
|
|
this.labelSubActionStatus.Name = "labelSubActionStatus";
|
|
//
|
|
// ActionProgressDialog
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.HelpButton = false;
|
|
this.MinimizeBox = true;
|
|
this.Name = "ActionProgressDialog";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label labelStatus;
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label labelException;
|
|
private System.Windows.Forms.Label labelBottom;
|
|
private System.Windows.Forms.PictureBox icon;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.Label labelSubActionStatus;
|
|
}
|
|
} |