mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
cdc8de930f
- On the dialog show the next run time in both the client's and the server's local time zone. - On the VMSS frequency page allow the user to pick the schedule in the client's local time zone and show then next run time in both the client's and the server's local time zone. - Refactoring to fix workflow and class design, reduce amount of code and simplify logic. - Various layout improvements. Signed-off-by: Aaron Robson aaron.robson@citrix.com Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
85 lines
3.3 KiB
C#
85 lines
3.3 KiB
C#
namespace XenAdmin.Wizards.NewPolicyWizard
|
|
{
|
|
partial class NewPolicyFinishPage
|
|
{
|
|
/// <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 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(NewPolicyFinishPage));
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
this.textBoxSummary = new System.Windows.Forms.TextBox();
|
|
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// label13
|
|
//
|
|
resources.ApplyResources(this.label13, "label13");
|
|
this.label13.Name = "label13";
|
|
//
|
|
// textBoxSummary
|
|
//
|
|
resources.ApplyResources(this.textBoxSummary, "textBoxSummary");
|
|
this.textBoxSummary.Name = "textBoxSummary";
|
|
this.textBoxSummary.ReadOnly = true;
|
|
this.textBoxSummary.TabStop = false;
|
|
//
|
|
// checkBox1
|
|
//
|
|
resources.ApplyResources(this.checkBox1, "checkBox1");
|
|
this.checkBox1.Name = "checkBox1";
|
|
this.checkBox1.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.checkBox1, 0, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.label13, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.textBoxSummary, 0, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// NewPolicyFinishPage
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "NewPolicyFinishPage";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label13;
|
|
private System.Windows.Forms.TextBox textBoxSummary;
|
|
private System.Windows.Forms.CheckBox checkBox1;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
}
|
|
}
|