xenadmin/XenAdmin/Wizards/BugToolWizard/GenericSelectHostsPage.Designer.cs
Danilo Del Busso 6f6bddd755
CP-40842: Remove CIS upload from Server Status Report wizard (#3087)
* Remove credentials controls from `BugToolPageDestination`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Explicitly call dispose in `BugToolPageDestination.cs`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Tidy up code in `BugToolPageDestination.cs`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Move `StatusReportRow` to its own file

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Move `ClientSideDataRow` and `HostStatusRow` to own files

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Update order of pages in `BugToolWizard`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Update action and create row for packaging status report in BugTool wizard

Instead of creating a new action, this males ZipStatusReportAction inherit StatusReportAction

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Allow for pending `StatusReportAction` to be cancelled

This avoids the need for a running action to update the status. i.e. an action that has been registered but hasn't started running can be cancelled, too.

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Update content of `ACTION_SYSTEM_STATUS_SUCCESSFUL` message

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Add link to `labelBlurb` in `BugToolPageRetrieveData.cs`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Add report packaging logic to `BugToolPageRetrieveData.cs`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Open CIS URL when clicking on `linkLabelBlurb`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* CP-40842: Report packaged data amount in `ZipStatusReportAction`

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Remove unused `using`s

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

* Minor layout tweaks.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Renamed folder and namespace to match the ones for the other wizards.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Renamed wizard's private fields. Some code efficiency corrections.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Keep the row classes as private within the BugToolPageRetrieveData class.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Removed leftover unused action.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Tidy up status report messages. Use more relevant icon.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Made blurb localisable.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Renamed private fields.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Simplified the stages of the compilation of the status report.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Renamed row classes again to match the action names.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Simplify reporting the progress of the zipping action.

Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>

* Recursive call is not necessary. Tweaked message.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>

* Sort strings

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>

* Update copyright notices

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>

---------

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
Co-authored-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
Co-authored-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2023-02-13 13:47:21 +00:00

118 lines
5.5 KiB
C#

namespace XenAdmin.Wizards.BugToolWizard
{
partial class GenericSelectHostsPage
{
/// <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)
{
ConnectionsManager.XenConnections.CollectionChanged -= XenConnections_CollectionChanged;
DeregisterEvents();
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GenericSelectHostsPage));
this.HostListTreeView = new XenAdmin.Controls.CustomTreeView();
this.SelectNoneButton = new System.Windows.Forms.Button();
this.SelectAllButton = new System.Windows.Forms.Button();
this.connectbutton = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.autoHeightLabel1 = new XenAdmin.Controls.Common.AutoHeightLabel();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// HostListTreeView
//
resources.ApplyResources(this.HostListTreeView, "HostListTreeView");
this.tableLayoutPanel1.SetColumnSpan(this.HostListTreeView, 3);
this.HostListTreeView.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.HostListTreeView.Name = "HostListTreeView";
this.HostListTreeView.NodeIndent = 19;
this.HostListTreeView.RootAlwaysExpanded = false;
this.HostListTreeView.ShowCheckboxes = true;
this.HostListTreeView.ShowDescription = true;
this.HostListTreeView.ShowImages = false;
this.HostListTreeView.ShowRootLines = true;
//
// SelectNoneButton
//
resources.ApplyResources(this.SelectNoneButton, "SelectNoneButton");
this.SelectNoneButton.Name = "SelectNoneButton";
this.SelectNoneButton.UseVisualStyleBackColor = true;
this.SelectNoneButton.Click += new System.EventHandler(this.SelectNoneButton_Click);
//
// SelectAllButton
//
resources.ApplyResources(this.SelectAllButton, "SelectAllButton");
this.SelectAllButton.Name = "SelectAllButton";
this.SelectAllButton.UseVisualStyleBackColor = true;
this.SelectAllButton.Click += new System.EventHandler(this.SelectAllButton_Click);
//
// connectbutton
//
resources.ApplyResources(this.connectbutton, "connectbutton");
this.connectbutton.Image = global::XenAdmin.Properties.Resources._000_AddApplicationServer_h32bit_16;
this.connectbutton.Name = "connectbutton";
this.connectbutton.UseVisualStyleBackColor = true;
this.connectbutton.Click += new System.EventHandler(this.connectbutton_Click);
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.autoHeightLabel1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.HostListTreeView, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.connectbutton, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.SelectAllButton, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.SelectNoneButton, 2, 2);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// autoHeightLabel1
//
resources.ApplyResources(this.autoHeightLabel1, "autoHeightLabel1");
this.tableLayoutPanel1.SetColumnSpan(this.autoHeightLabel1, 3);
this.autoHeightLabel1.Name = "autoHeightLabel1";
//
// GenericSelectHostsPage
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.tableLayoutPanel1);
this.DoubleBuffered = true;
this.Name = "GenericSelectHostsPage";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button SelectNoneButton;
private System.Windows.Forms.Button SelectAllButton;
private System.Windows.Forms.Button connectbutton;
private XenAdmin.Controls.CustomTreeView HostListTreeView;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private XenAdmin.Controls.Common.AutoHeightLabel autoHeightLabel1;
}
}