2013-06-24 13:41:48 +02:00
|
|
|
namespace XenAdmin
|
|
|
|
{
|
|
|
|
partial class MainWindow
|
|
|
|
{
|
|
|
|
/// <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)
|
|
|
|
{
|
|
|
|
Program.Exiting = true;
|
|
|
|
|
2013-12-31 11:34:11 +01:00
|
|
|
pluginManager.PluginsChanged -= pluginManager_PluginsChanged;
|
2020-07-26 15:05:58 +02:00
|
|
|
UnRegisterEvents();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
2020-07-26 15:05:58 +02:00
|
|
|
if (disposing)
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
2020-07-26 15:05:58 +02:00
|
|
|
if (components != null)
|
|
|
|
components.Dispose();
|
|
|
|
|
|
|
|
pluginManager.Dispose();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
2020-07-26 15:05:58 +02:00
|
|
|
log.Debug("MainWindow disposing of license timer");
|
2013-06-24 13:41:48 +02:00
|
|
|
if (licenseTimer != null)
|
|
|
|
licenseTimer.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug("Before MainWindow base.Dispose()");
|
|
|
|
base.Dispose(disposing);
|
|
|
|
log.Debug("After MainWindow base.Dispose()");
|
|
|
|
}
|
|
|
|
|
|
|
|
#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.components = new System.ComponentModel.Container();
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
|
|
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
2013-08-26 12:42:32 +02:00
|
|
|
this.navigationPane = new XenAdmin.Controls.MainWindowControls.NavigationPane();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.TheTabControl = new System.Windows.Forms.TabControl();
|
|
|
|
this.TabPageHome = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageGeneral = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageBallooning = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageConsole = new System.Windows.Forms.TabPage();
|
2016-07-08 10:19:39 +02:00
|
|
|
this.TabPageCvmConsole = new System.Windows.Forms.TabPage();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.TabPageStorage = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPagePhysicalStorage = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageSR = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageNetwork = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageNICs = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPagePeformance = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageHA = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageHAUpsell = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageSnapshots = new System.Windows.Forms.TabPage();
|
|
|
|
this.snapshotPage = new XenAdmin.TabPages.SnapshotsPage();
|
|
|
|
this.TabPageWLB = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageWLBUpsell = new System.Windows.Forms.TabPage();
|
|
|
|
this.TabPageAD = new System.Windows.Forms.TabPage();
|
2016-07-05 09:14:13 +02:00
|
|
|
this.TabPageADUpsell = new System.Windows.Forms.TabPage();
|
2013-11-14 12:06:50 +01:00
|
|
|
this.TabPageGPU = new System.Windows.Forms.TabPage();
|
2016-07-13 14:36:49 +02:00
|
|
|
this.TabPagePvs = new System.Windows.Forms.TabPage();
|
2015-05-18 16:28:37 +02:00
|
|
|
this.TabPageSearch = new System.Windows.Forms.TabPage();
|
2015-02-06 11:03:42 +01:00
|
|
|
this.TabPageDockerProcess = new System.Windows.Forms.TabPage();
|
2015-05-18 16:28:37 +02:00
|
|
|
this.TabPageDockerDetails = new System.Windows.Forms.TabPage();
|
2019-04-02 15:12:25 +02:00
|
|
|
this.TabPageUSB = new System.Windows.Forms.TabPage();
|
2013-08-30 14:35:32 +02:00
|
|
|
this.alertPage = new XenAdmin.TabPages.AlertSummaryPage();
|
2013-09-02 15:45:42 +02:00
|
|
|
this.updatesPage = new XenAdmin.TabPages.ManageUpdatesPage();
|
2013-11-07 16:31:13 +01:00
|
|
|
this.eventsPage = new XenAdmin.TabPages.HistoryPage();
|
2018-11-04 04:24:58 +01:00
|
|
|
this.TitleBackPanel = new XenAdmin.Controls.GradientPanel.VerticalGradientPanel();
|
2013-08-30 14:35:32 +02:00
|
|
|
this.TitleIcon = new System.Windows.Forms.PictureBox();
|
|
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
2017-09-28 17:10:41 +02:00
|
|
|
this.TitleLabel = new System.Windows.Forms.Label();
|
|
|
|
this.LicenseStatusTitleLabel = new System.Windows.Forms.Label();
|
2013-08-30 14:35:32 +02:00
|
|
|
this.toolTipContainer1 = new XenAdmin.Controls.ToolTipContainer();
|
|
|
|
this.loggedInLabel1 = new XenAdmin.Controls.LoggedInLabel();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.ToolStrip = new XenAdmin.Controls.ToolStripEx();
|
|
|
|
this.backButton = new System.Windows.Forms.ToolStripSplitButton();
|
|
|
|
this.forwardButton = new System.Windows.Forms.ToolStripSplitButton();
|
|
|
|
this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.AddServerToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.AddPoolToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.newStorageToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.NewVmToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.shutDownToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.powerOnHostToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.startVMToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.RebootToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.resumeToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.SuspendToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.ForceShutdownToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.ForceRebootToolbarButton = new XenAdmin.Commands.CommandToolStripButton();
|
2015-02-11 14:46:23 +01:00
|
|
|
this.stopContainerToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.startContainerToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.restartContainerToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.resumeContainerToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
|
|
|
this.pauseContainerToolStripButton = new XenAdmin.Commands.CommandToolStripButton();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.statusToolTip = new System.Windows.Forms.ToolTip(this.components);
|
|
|
|
this.ToolBarContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
|
|
this.ShowToolbarMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.FileImportVMToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.importSearchToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.importSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.exportSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripSeparator31 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2013-11-07 11:00:53 +01:00
|
|
|
this.customTemplatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.templatesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.localStorageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.ShowHiddenObjectsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripSeparator24 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.poolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.AddPoolToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.addServerToolStripMenuItem = new XenAdmin.Commands.AddHostToSelectedPoolToolStripMenuItem();
|
2019-08-08 02:15:10 +02:00
|
|
|
this.removeServerToolStripMenuItem = new XenAdmin.Commands.PoolRemoveServerToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.poolReconnectAsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.disconnectPoolToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.virtualAppliancesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator30 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.highAvailabilityToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.disasterRecoveryToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.drConfigureToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.DrWizardToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2017-05-25 15:56:13 +02:00
|
|
|
this.VMSnapshotScheduleToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2015-11-30 12:53:54 +01:00
|
|
|
this.exportResourceReportPoolToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.wlbReportsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.wlbDisconnectToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2020-03-25 00:28:44 +01:00
|
|
|
this.conversionToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.changePoolPasswordToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.deleteToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.PoolPropertiesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.HostMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.AddHostToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.RebootHostToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.powerOnToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.ShutdownHostToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.restartToolstackToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.connectDisconnectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.ReconnectToolStripMenuItem1 = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.DisconnectToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.reconnectAsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.connectAllToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.disconnectAllToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.addServerToPoolMenuItem = new XenAdmin.Commands.AddSelectedHostToPoolToolStripMenuItem();
|
2020-03-25 00:28:44 +01:00
|
|
|
this.menuItemRemoveFromPool = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.backupToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.restoreFromBackupToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator();
|
2020-07-08 13:59:29 +02:00
|
|
|
this.toolStripMenuItemInstallCertificate = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.maintenanceModeToolStripMenuItem1 = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2016-08-01 10:25:10 +02:00
|
|
|
this.controlDomainMemoryToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.RemoveCrashdumpsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.HostPasswordToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.ChangeRootPasswordToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.forgetSavedPasswordToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.destroyServerToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.removeHostToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.ServerPropertiesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.VMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.NewVmToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.startShutdownToolStripMenuItem = new XenAdmin.Commands.VMLifeCycleToolStripMenuItem();
|
|
|
|
this.resumeOnToolStripMenuItem = new XenAdmin.Commands.ResumeVMOnHostToolStripMenuItem();
|
|
|
|
this.relocateToolStripMenuItem = new XenAdmin.Commands.MigrateVMToolStripMenuItem();
|
|
|
|
this.startOnHostToolStripMenuItem = new XenAdmin.Commands.StartVMOnHostToolStripMenuItem();
|
|
|
|
this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
|
2016-01-27 11:36:48 +01:00
|
|
|
this.assignSnapshotScheduleToolStripMenuItem = new XenAdmin.Commands.AssignGroupToolStripMenuItemVMSS();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.assignToVirtualApplianceToolStripMenuItem = new XenAdmin.Commands.AssignGroupToolStripMenuItemVM_appliance();
|
|
|
|
this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.copyVMtoSharedStorageMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.MoveVMToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.snapshotToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.convertToTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.exportToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2019-04-02 15:12:25 +02:00
|
|
|
this.disableCbtToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
CP-16922: Implement GUI for enabling PVS read caching (#1179)
* CP-16922: UI changes to PvsPage to replace the single configure button with a separate enable and disable one, per the design doc
* CP-16922: Intermediate checkin - command + dialog implemented, but PVS page has some layout problems.
* CP-16922: Implement GUI for enabling PVS read caching and marking/unmarking VMs for prepopulation
Fix the broken layout by reverting MainWindow.resx (which shouldn't have changed) back to the previous commit. Also removed duplicate properties button code.
* CP-16922: PVS Page changes, to properly display all VMs (not just ones with proxy), only populating proxy columns if there is a proxy set.
* CP-16922: Use a CommandButton for the enable button, connected to the same command as the VM main menu button, and using the table selection as its selection manager.
* CP-16922: Delete the old enable button click behaviour (because it now has a proper command), was causing the dialog to show up twice
* CP-16922: Properly list VMs by hiding those that should be hidden (in addition to non-VMs, also hide the __gui__ prefix and others covered by Show function). Also fixes a bug in NewVMGroupVMsPage discovered when fixing this - it would show VMs that should be hidden if you used the search bar.
* CP-16922: Use ButtonText on the Command to set the text on the PVS enable button
* CP-16922: Add the disable PVS read-caching command, and its associated proxy destroy action. Both based off enable equivalents (main difference is no dialog for now). Not used yet but will be in main window menu + disable button
* CP-16922: Add disable PVS read-caching to the main window menu (under enable), with the disable command attached to it
* CP-16922: Add support for disabling PVS read-caching for selected hosts via the PVS tab page by converting the disable button into a CommandButton in the same way as the enable button, using its own command + selection manager (because Selection Managers only bind to one control)
* CP-16922: Design - adding the "read caching enabled" column from the design, so that we display both whether caching is enabled and whether the VM is currently cached. If it's disabled all other values are missing.
* CP-16922: Add the PVS site column per the design to show the site a VM's PVS Proxy is on if it has a proxy
* CP-16922: Add an event handler for VMs changing so that newly provisioned VMs immediately show up in the PVS tab page
* CP-16922: Support for properly remembering the selection when the VM list is refreshed. A new method returns the list of VMs for the selected rows, and we can then check if the VM for the row being added is in this list. If there was no previous selection then we still select the first row by default.
* CP-16922: Remove prepopulate, which is being removed from the design. The next XAPI version will remove it, so just pass False as prepopulate for now, and remove the option from the dialog and PVS tab page.
* CP-16922: Improve UI appearance for a missing Storage Repository. Per the design, if there is no SR show the message None (memory only) instead of an empty cell
* CP-16922: Improved sorting behaviour. All columns (except VM name, which always uses it) use the VM tag as a sorting fallback (since they all have duplicates). New default sort which sorts by caching enabled first (yes before no), and then VM tag as a tiebreaker. Support for remembering the current sort on refresh, ie when a value changes.
* CP-16922: Refactoring to use a VM extension method to get the PVSProxy (or null if none exists) for a VM. This was used in the PVS Page + commands which are now much simpler.
* CP-16922: Move where the SelectionChanged event handler is set when refreshing the PVS table, so that the command buttons are updated correctly.
* CP-16922: Improvements to PVS read-caching dialog. Set accept/cancel buttons properly + adjust tab values, so focus acts as expected
* CP-16922: Remove the images from the menu for Enable/Disable PVS read-caching, most commands in the menu don't have one
* CP-16922: Sorting out the strings for the actions + ParallelAction calls, and moving them into the resx. Also reverting wrong MainWindow.resx changes.
* CAR-2184: XAPI changes. I've made the minimal possible changes to PvsPage to ensure it compiles, but it's had a lot of feature work (CP-16922) that supersedes this, these small changes should keep that merge painless.
* CAR-2184 XAPI: Reverse the unrelated changes, only keep the PVS ones.
* CP-16922: Merge latest XAPI changes, notably changes to Pvs_site.create
* CP-16922: Change tab show/hide logic for PVS tab, show it even if there are no PVS sites.
* CP-16922: Implement GUI for enabling PVS read caching
Design changes - remove the storage repo column and replace it with status, which is populated with a friendly version of the pvs_proxy_status enum. Also populate site list using site.name_label
Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
* CP-16922: Implement GUI for enabling PVS read caching
Adjusting the CanExecute of Enable PVS read-caching command to require at least one PVS site to be created. Since the PVS tab can show up without any sites, we need this because we can't create a proxy without a site.
* CP-16922: Code review changes.
Tidied up messages, and ensured actions run async properly, and without exiting before their task.
* CP-16922: Code review changes.
Update dialog resx, wider combobox on dialog, update action descriptions before setting RelatedTask, add friendly message body for PVS error notifications.
2016-09-22 16:08:15 +02:00
|
|
|
this.enablePVSReadcachingToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.disablePVSReadcachingToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.installToolsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.sendCtrlAltDelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.uninstallToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.VMPropertiesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.StorageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.AddStorageToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.RepairStorageToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.DefaultSRToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.virtualDisksToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.addVirtualDiskToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.attachVirtualDiskToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2014-07-04 14:36:41 +02:00
|
|
|
this.reclaimFreedSpacetripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.DetachStorageToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.ReattachStorageRepositoryToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.ForgetStorageRepositoryToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.DestroyStorageRepositoryToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.SRPropertiesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.templatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.newVMFromTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.InstantVmToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator29 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.exportTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.duplicateTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.uninstallTemplateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator28 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.templatePropertiesToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2013-08-23 13:23:35 +02:00
|
|
|
this.bugToolToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2015-11-30 12:53:54 +01:00
|
|
|
this.healthCheckToolStripMenuItem1 = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.LicenseManagerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.installNewUpdateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.rollingUpgradeToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.preferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.helpTopicsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.helpContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.viewApplicationLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.toolStripMenuItem17 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.xenSourceOnTheWebToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2015-11-30 12:53:54 +01:00
|
|
|
this.xenCenterPluginsOnlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.aboutXenSourceAdminToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
this.MainMenuBar = new XenAdmin.Controls.MenuStripEx();
|
|
|
|
this.securityGroupsToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.MenuPanel = new System.Windows.Forms.Panel();
|
2013-11-12 13:44:19 +01:00
|
|
|
this.StatusStrip = new System.Windows.Forms.StatusStrip();
|
|
|
|
this.statusProgressBar = new System.Windows.Forms.ToolStripProgressBar();
|
2020-07-08 13:59:29 +02:00
|
|
|
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
2020-03-24 03:07:15 +01:00
|
|
|
this.statusLabelAlerts = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
|
this.statusLabelUpdates = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
|
this.statusLabelErrors = new System.Windows.Forms.ToolStripStatusLabel();
|
2020-07-08 13:59:29 +02:00
|
|
|
this.toolStripMenuItemRotateSecret = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2020-09-14 18:03:26 +02:00
|
|
|
this.toolStripMenuItemHaConfigure = new XenAdmin.Commands.CommandToolStripMenuItem();
|
|
|
|
this.toolStripMenuItemHaDisable = new XenAdmin.Commands.CommandToolStripMenuItem();
|
2014-04-14 19:04:03 +02:00
|
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
|
|
this.splitContainer1.SuspendLayout();
|
2013-08-30 14:35:32 +02:00
|
|
|
this.TheTabControl.SuspendLayout();
|
|
|
|
this.TabPageSnapshots.SuspendLayout();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.TitleBackPanel.SuspendLayout();
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).BeginInit();
|
|
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
|
|
this.toolTipContainer1.SuspendLayout();
|
|
|
|
this.ToolStrip.SuspendLayout();
|
|
|
|
this.ToolBarContextMenu.SuspendLayout();
|
|
|
|
this.MainMenuBar.SuspendLayout();
|
|
|
|
this.MenuPanel.SuspendLayout();
|
2013-11-12 13:44:19 +01:00
|
|
|
this.StatusStrip.SuspendLayout();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.SuspendLayout();
|
|
|
|
//
|
|
|
|
// splitContainer1
|
|
|
|
//
|
2013-11-07 16:31:13 +01:00
|
|
|
this.splitContainer1.BackColor = System.Drawing.SystemColors.Control;
|
2013-06-24 13:41:48 +02:00
|
|
|
resources.ApplyResources(this.splitContainer1, "splitContainer1");
|
|
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
|
|
//
|
|
|
|
// splitContainer1.Panel1
|
|
|
|
//
|
2013-08-26 12:42:32 +02:00
|
|
|
this.splitContainer1.Panel1.Controls.Add(this.navigationPane);
|
2013-06-24 13:41:48 +02:00
|
|
|
resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
|
|
|
|
//
|
|
|
|
// splitContainer1.Panel2
|
|
|
|
//
|
2013-11-07 16:31:13 +01:00
|
|
|
this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control;
|
2013-06-24 13:41:48 +02:00
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.TheTabControl);
|
2013-08-30 14:35:32 +02:00
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.alertPage);
|
2013-08-30 16:19:59 +02:00
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.updatesPage);
|
2013-11-07 16:31:13 +01:00
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.eventsPage);
|
2013-08-30 14:35:32 +02:00
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.TitleBackPanel);
|
2013-06-24 13:41:48 +02:00
|
|
|
resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
|
2017-02-27 19:00:46 +01:00
|
|
|
this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
2013-08-26 12:42:32 +02:00
|
|
|
// navigationPane
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
2013-08-26 12:42:32 +02:00
|
|
|
resources.ApplyResources(this.navigationPane, "navigationPane");
|
|
|
|
this.navigationPane.Name = "navigationPane";
|
2014-04-14 19:04:03 +02:00
|
|
|
this.navigationPane.NavigationModeChanged += new System.Action<XenAdmin.Controls.MainWindowControls.NavigationPane.NavigationMode>(this.navigationPane_NavigationModeChanged);
|
2013-11-07 11:00:53 +01:00
|
|
|
this.navigationPane.NotificationsSubModeChanged += new System.Action<XenAdmin.Controls.MainWindowControls.NotificationsSubModeItem>(this.navigationPane_NotificationsSubModeChanged);
|
2013-08-26 12:42:32 +02:00
|
|
|
this.navigationPane.TreeViewSelectionChanged += new System.Action(this.navigationPane_TreeViewSelectionChanged);
|
2014-04-14 19:04:03 +02:00
|
|
|
this.navigationPane.TreeNodeBeforeSelected += new System.Action(this.navigationPane_TreeNodeBeforeSelected);
|
2013-08-26 12:42:32 +02:00
|
|
|
this.navigationPane.TreeNodeClicked += new System.Action(this.navigationPane_TreeNodeClicked);
|
|
|
|
this.navigationPane.TreeNodeRightClicked += new System.Action(this.navigationPane_TreeNodeRightClicked);
|
|
|
|
this.navigationPane.TreeViewRefreshed += new System.Action(this.navigationPane_TreeViewRefreshed);
|
2019-04-02 15:12:25 +02:00
|
|
|
this.navigationPane.DragDropCommandActivated += new System.Action<string>(this.navigationPane_DragDropCommandActivated);
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
|
|
|
// TheTabControl
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TheTabControl, "TheTabControl");
|
2019-04-02 15:12:25 +02:00
|
|
|
this.TheTabControl.Controls.Add(this.TabPageHome);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageGeneral);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageBallooning);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageConsole);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageCvmConsole);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageStorage);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPagePhysicalStorage);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageSR);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageNetwork);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageNICs);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPagePeformance);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageHA);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageHAUpsell);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageSnapshots);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageWLB);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageWLBUpsell);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageAD);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageADUpsell);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageGPU);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPagePvs);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageSearch);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageDockerProcess);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageDockerDetails);
|
|
|
|
this.TheTabControl.Controls.Add(this.TabPageUSB);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.TheTabControl.Name = "TheTabControl";
|
|
|
|
this.TheTabControl.SelectedIndex = 4;
|
2018-09-28 18:58:49 +02:00
|
|
|
this.TheTabControl.SelectedIndexChanged += new System.EventHandler(this.TheTabControl_SelectedIndexChanged);
|
2019-04-02 15:12:25 +02:00
|
|
|
this.TheTabControl.Deselected += new System.Windows.Forms.TabControlEventHandler(this.TheTabControl_Deselected);
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
|
|
|
// TabPageHome
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageHome, "TabPageHome");
|
|
|
|
this.TabPageHome.Name = "TabPageHome";
|
|
|
|
this.TabPageHome.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageGeneral
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageGeneral, "TabPageGeneral");
|
|
|
|
this.TabPageGeneral.Name = "TabPageGeneral";
|
|
|
|
this.TabPageGeneral.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageBallooning
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageBallooning, "TabPageBallooning");
|
|
|
|
this.TabPageBallooning.Name = "TabPageBallooning";
|
|
|
|
this.TabPageBallooning.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageConsole
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageConsole, "TabPageConsole");
|
|
|
|
this.TabPageConsole.Name = "TabPageConsole";
|
|
|
|
this.TabPageConsole.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2016-07-08 10:19:39 +02:00
|
|
|
// TabPageCvmConsole
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageCvmConsole, "TabPageCvmConsole");
|
|
|
|
this.TabPageCvmConsole.Name = "TabPageCvmConsole";
|
|
|
|
this.TabPageCvmConsole.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// TabPageStorage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageStorage, "TabPageStorage");
|
|
|
|
this.TabPageStorage.Name = "TabPageStorage";
|
|
|
|
this.TabPageStorage.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPagePhysicalStorage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPagePhysicalStorage, "TabPagePhysicalStorage");
|
|
|
|
this.TabPagePhysicalStorage.Name = "TabPagePhysicalStorage";
|
|
|
|
this.TabPagePhysicalStorage.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageSR
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageSR, "TabPageSR");
|
|
|
|
this.TabPageSR.Name = "TabPageSR";
|
|
|
|
this.TabPageSR.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageNetwork
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageNetwork, "TabPageNetwork");
|
|
|
|
this.TabPageNetwork.Name = "TabPageNetwork";
|
|
|
|
this.TabPageNetwork.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageNICs
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageNICs, "TabPageNICs");
|
|
|
|
this.TabPageNICs.Name = "TabPageNICs";
|
|
|
|
this.TabPageNICs.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPagePeformance
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPagePeformance, "TabPagePeformance");
|
|
|
|
this.TabPagePeformance.Name = "TabPagePeformance";
|
|
|
|
this.TabPagePeformance.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageHA
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageHA, "TabPageHA");
|
|
|
|
this.TabPageHA.Name = "TabPageHA";
|
|
|
|
this.TabPageHA.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageHAUpsell
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageHAUpsell, "TabPageHAUpsell");
|
|
|
|
this.TabPageHAUpsell.Name = "TabPageHAUpsell";
|
|
|
|
this.TabPageHAUpsell.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageSnapshots
|
|
|
|
//
|
|
|
|
this.TabPageSnapshots.Controls.Add(this.snapshotPage);
|
|
|
|
resources.ApplyResources(this.TabPageSnapshots, "TabPageSnapshots");
|
|
|
|
this.TabPageSnapshots.Name = "TabPageSnapshots";
|
|
|
|
this.TabPageSnapshots.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// snapshotPage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.snapshotPage, "snapshotPage");
|
|
|
|
this.snapshotPage.Name = "snapshotPage";
|
|
|
|
this.snapshotPage.VM = null;
|
|
|
|
//
|
|
|
|
// TabPageWLB
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageWLB, "TabPageWLB");
|
|
|
|
this.TabPageWLB.Name = "TabPageWLB";
|
|
|
|
this.TabPageWLB.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageWLBUpsell
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageWLBUpsell, "TabPageWLBUpsell");
|
|
|
|
this.TabPageWLBUpsell.Name = "TabPageWLBUpsell";
|
|
|
|
this.TabPageWLBUpsell.UseVisualStyleBackColor = true;
|
|
|
|
//
|
|
|
|
// TabPageAD
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageAD, "TabPageAD");
|
|
|
|
this.TabPageAD.Name = "TabPageAD";
|
|
|
|
this.TabPageAD.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2016-07-05 09:14:13 +02:00
|
|
|
// TabPageADUpsell
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageADUpsell, "TabPageADUpsell");
|
|
|
|
this.TabPageADUpsell.Name = "TabPageADUpsell";
|
|
|
|
this.TabPageADUpsell.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2013-11-14 12:06:50 +01:00
|
|
|
// TabPageGPU
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageGPU, "TabPageGPU");
|
|
|
|
this.TabPageGPU.Name = "TabPageGPU";
|
|
|
|
this.TabPageGPU.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2016-07-13 14:36:49 +02:00
|
|
|
// TabPagePvs
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPagePvs, "TabPagePvs");
|
|
|
|
this.TabPagePvs.Name = "TabPagePvs";
|
|
|
|
this.TabPagePvs.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2013-10-09 10:13:47 +02:00
|
|
|
// TabPageSearch
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageSearch, "TabPageSearch");
|
|
|
|
this.TabPageSearch.Name = "TabPageSearch";
|
|
|
|
this.TabPageSearch.UseVisualStyleBackColor = true;
|
2015-05-18 16:28:37 +02:00
|
|
|
//
|
2015-02-06 11:03:42 +01:00
|
|
|
// TabPageDockerProcess
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageDockerProcess, "TabPageDockerProcess");
|
|
|
|
this.TabPageDockerProcess.Name = "TabPageDockerProcess";
|
|
|
|
this.TabPageDockerProcess.UseVisualStyleBackColor = true;
|
2015-05-18 16:28:37 +02:00
|
|
|
//
|
2015-02-09 08:42:00 +01:00
|
|
|
// TabPageDockerDetails
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageDockerDetails, "TabPageDockerDetails");
|
|
|
|
this.TabPageDockerDetails.Name = "TabPageDockerDetails";
|
2015-05-18 16:28:37 +02:00
|
|
|
this.TabPageDockerDetails.UseVisualStyleBackColor = true;
|
2015-02-06 11:03:42 +01:00
|
|
|
//
|
2019-04-02 15:12:25 +02:00
|
|
|
// TabPageUSB
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TabPageUSB, "TabPageUSB");
|
|
|
|
this.TabPageUSB.Name = "TabPageUSB";
|
|
|
|
this.TabPageUSB.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2013-08-30 14:35:32 +02:00
|
|
|
// alertPage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.alertPage, "alertPage");
|
2013-08-30 16:19:59 +02:00
|
|
|
this.alertPage.BackColor = System.Drawing.SystemColors.Window;
|
2013-08-30 14:35:32 +02:00
|
|
|
this.alertPage.Name = "alertPage";
|
|
|
|
//
|
2013-09-02 15:45:42 +02:00
|
|
|
// updatesPage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.updatesPage, "updatesPage");
|
|
|
|
this.updatesPage.BackColor = System.Drawing.SystemColors.Window;
|
|
|
|
this.updatesPage.Name = "updatesPage";
|
|
|
|
//
|
2013-11-07 16:31:13 +01:00
|
|
|
// eventsPage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.eventsPage, "eventsPage");
|
|
|
|
this.eventsPage.BackColor = System.Drawing.SystemColors.Window;
|
|
|
|
this.eventsPage.Name = "eventsPage";
|
|
|
|
//
|
2013-08-30 14:35:32 +02:00
|
|
|
// TitleBackPanel
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TitleBackPanel, "TitleBackPanel");
|
|
|
|
this.TitleBackPanel.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
this.TitleBackPanel.Controls.Add(this.TitleIcon);
|
|
|
|
this.TitleBackPanel.Controls.Add(this.tableLayoutPanel1);
|
|
|
|
this.TitleBackPanel.Name = "TitleBackPanel";
|
|
|
|
//
|
|
|
|
// TitleIcon
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TitleIcon, "TitleIcon");
|
|
|
|
this.TitleIcon.Name = "TitleIcon";
|
|
|
|
this.TitleIcon.TabStop = false;
|
|
|
|
//
|
|
|
|
// tableLayoutPanel1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
|
|
this.tableLayoutPanel1.Controls.Add(this.TitleLabel, 0, 0);
|
2017-09-28 17:10:41 +02:00
|
|
|
this.tableLayoutPanel1.Controls.Add(this.LicenseStatusTitleLabel, 1, 0);
|
|
|
|
this.tableLayoutPanel1.Controls.Add(this.toolTipContainer1, 3, 0);
|
2013-08-30 14:35:32 +02:00
|
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
|
|
//
|
2017-09-28 17:10:41 +02:00
|
|
|
// TitleLabel
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.TitleLabel, "TitleLabel");
|
|
|
|
this.TitleLabel.AutoEllipsis = true;
|
2018-11-04 04:24:58 +01:00
|
|
|
this.TitleLabel.ForeColor = System.Drawing.SystemColors.ControlText;
|
2017-09-28 17:10:41 +02:00
|
|
|
this.TitleLabel.Name = "TitleLabel";
|
|
|
|
this.TitleLabel.UseMnemonic = false;
|
|
|
|
//
|
|
|
|
// LicenseStatusTitleLabel
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.LicenseStatusTitleLabel, "LicenseStatusTitleLabel");
|
|
|
|
this.LicenseStatusTitleLabel.ForeColor = System.Drawing.SystemColors.HighlightText;
|
|
|
|
this.LicenseStatusTitleLabel.Name = "LicenseStatusTitleLabel";
|
|
|
|
this.LicenseStatusTitleLabel.UseMnemonic = false;
|
|
|
|
//
|
2013-08-30 14:35:32 +02:00
|
|
|
// toolTipContainer1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.toolTipContainer1, "toolTipContainer1");
|
|
|
|
this.toolTipContainer1.Controls.Add(this.loggedInLabel1);
|
|
|
|
this.toolTipContainer1.Name = "toolTipContainer1";
|
|
|
|
//
|
|
|
|
// loggedInLabel1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.loggedInLabel1, "loggedInLabel1");
|
|
|
|
this.loggedInLabel1.BackColor = System.Drawing.Color.Transparent;
|
|
|
|
this.loggedInLabel1.Connection = null;
|
|
|
|
this.loggedInLabel1.Name = "loggedInLabel1";
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// ToolStrip
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.ToolStrip, "ToolStrip");
|
|
|
|
this.ToolStrip.ClickThrough = true;
|
|
|
|
this.ToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
|
|
|
this.ToolStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
|
|
this.ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.backButton,
|
|
|
|
this.forwardButton,
|
|
|
|
this.toolStripSeparator17,
|
|
|
|
this.AddServerToolbarButton,
|
|
|
|
this.toolStripSeparator11,
|
|
|
|
this.AddPoolToolbarButton,
|
|
|
|
this.newStorageToolbarButton,
|
|
|
|
this.NewVmToolbarButton,
|
|
|
|
this.toolStripSeparator12,
|
|
|
|
this.shutDownToolStripButton,
|
|
|
|
this.powerOnHostToolStripButton,
|
|
|
|
this.startVMToolStripButton,
|
|
|
|
this.RebootToolbarButton,
|
|
|
|
this.resumeToolStripButton,
|
|
|
|
this.SuspendToolbarButton,
|
|
|
|
this.ForceShutdownToolbarButton,
|
2015-02-11 14:46:23 +01:00
|
|
|
this.ForceRebootToolbarButton,
|
|
|
|
this.stopContainerToolStripButton,
|
|
|
|
this.startContainerToolStripButton,
|
|
|
|
this.restartContainerToolStripButton,
|
|
|
|
this.resumeContainerToolStripButton,
|
|
|
|
this.pauseContainerToolStripButton});
|
2013-06-24 13:41:48 +02:00
|
|
|
this.ToolStrip.Name = "ToolStrip";
|
|
|
|
this.ToolStrip.Stretch = true;
|
|
|
|
this.ToolStrip.TabStop = true;
|
|
|
|
this.ToolStrip.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainMenuBar_MouseClick);
|
|
|
|
//
|
|
|
|
// backButton
|
|
|
|
//
|
|
|
|
this.backButton.Image = global::XenAdmin.Properties.Resources._001_Back_h32bit_24;
|
|
|
|
resources.ApplyResources(this.backButton, "backButton");
|
|
|
|
this.backButton.Name = "backButton";
|
|
|
|
this.backButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
this.backButton.ButtonClick += new System.EventHandler(this.backButton_Click);
|
|
|
|
this.backButton.DropDownOpening += new System.EventHandler(this.backButton_DropDownOpening);
|
|
|
|
//
|
|
|
|
// forwardButton
|
|
|
|
//
|
|
|
|
this.forwardButton.Image = global::XenAdmin.Properties.Resources._001_Forward_h32bit_24;
|
|
|
|
resources.ApplyResources(this.forwardButton, "forwardButton");
|
|
|
|
this.forwardButton.Margin = new System.Windows.Forms.Padding(0, 2, 0, 2);
|
|
|
|
this.forwardButton.Name = "forwardButton";
|
|
|
|
this.forwardButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
this.forwardButton.ButtonClick += new System.EventHandler(this.forwardButton_Click);
|
|
|
|
this.forwardButton.DropDownOpening += new System.EventHandler(this.forwardButton_DropDownOpening);
|
|
|
|
//
|
|
|
|
// toolStripSeparator17
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.toolStripSeparator17, "toolStripSeparator17");
|
|
|
|
this.toolStripSeparator17.Margin = new System.Windows.Forms.Padding(2, 0, 7, 0);
|
|
|
|
this.toolStripSeparator17.Name = "toolStripSeparator17";
|
|
|
|
this.toolStripSeparator17.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// AddServerToolbarButton
|
|
|
|
//
|
|
|
|
this.AddServerToolbarButton.Command = new XenAdmin.Commands.AddHostCommand();
|
|
|
|
resources.ApplyResources(this.AddServerToolbarButton, "AddServerToolbarButton");
|
|
|
|
this.AddServerToolbarButton.Image = global::XenAdmin.Properties.Resources._000_AddApplicationServer_h32bit_24;
|
|
|
|
this.AddServerToolbarButton.Name = "AddServerToolbarButton";
|
|
|
|
this.AddServerToolbarButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// toolStripSeparator11
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.toolStripSeparator11, "toolStripSeparator11");
|
|
|
|
this.toolStripSeparator11.Margin = new System.Windows.Forms.Padding(2, 0, 7, 0);
|
|
|
|
this.toolStripSeparator11.Name = "toolStripSeparator11";
|
|
|
|
this.toolStripSeparator11.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// AddPoolToolbarButton
|
|
|
|
//
|
|
|
|
this.AddPoolToolbarButton.Command = new XenAdmin.Commands.NewPoolCommand();
|
|
|
|
resources.ApplyResources(this.AddPoolToolbarButton, "AddPoolToolbarButton");
|
|
|
|
this.AddPoolToolbarButton.Image = global::XenAdmin.Properties.Resources._000_PoolNew_h32bit_24;
|
|
|
|
this.AddPoolToolbarButton.Name = "AddPoolToolbarButton";
|
|
|
|
this.AddPoolToolbarButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// newStorageToolbarButton
|
|
|
|
//
|
|
|
|
this.newStorageToolbarButton.Command = new XenAdmin.Commands.NewSRCommand();
|
|
|
|
resources.ApplyResources(this.newStorageToolbarButton, "newStorageToolbarButton");
|
|
|
|
this.newStorageToolbarButton.Image = global::XenAdmin.Properties.Resources._000_NewStorage_h32bit_24;
|
|
|
|
this.newStorageToolbarButton.Name = "newStorageToolbarButton";
|
|
|
|
this.newStorageToolbarButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// NewVmToolbarButton
|
|
|
|
//
|
|
|
|
this.NewVmToolbarButton.Command = new XenAdmin.Commands.NewVMCommand();
|
|
|
|
resources.ApplyResources(this.NewVmToolbarButton, "NewVmToolbarButton");
|
|
|
|
this.NewVmToolbarButton.Image = global::XenAdmin.Properties.Resources._000_CreateVM_h32bit_24;
|
|
|
|
this.NewVmToolbarButton.Name = "NewVmToolbarButton";
|
|
|
|
this.NewVmToolbarButton.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
|
|
|
// toolStripSeparator12
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.toolStripSeparator12, "toolStripSeparator12");
|
|
|
|
this.toolStripSeparator12.Margin = new System.Windows.Forms.Padding(2, 0, 7, 0);
|
|
|
|
this.toolStripSeparator12.Name = "toolStripSeparator12";
|
|
|
|
//
|
|
|
|
// shutDownToolStripButton
|
|
|
|
//
|
|
|
|
this.shutDownToolStripButton.Command = new XenAdmin.Commands.ShutDownCommand();
|
|
|
|
resources.ApplyResources(this.shutDownToolStripButton, "shutDownToolStripButton");
|
|
|
|
this.shutDownToolStripButton.Name = "shutDownToolStripButton";
|
|
|
|
//
|
|
|
|
// powerOnHostToolStripButton
|
|
|
|
//
|
|
|
|
this.powerOnHostToolStripButton.Command = new XenAdmin.Commands.PowerOnHostCommand();
|
|
|
|
resources.ApplyResources(this.powerOnHostToolStripButton, "powerOnHostToolStripButton");
|
|
|
|
this.powerOnHostToolStripButton.Name = "powerOnHostToolStripButton";
|
|
|
|
//
|
|
|
|
// startVMToolStripButton
|
|
|
|
//
|
|
|
|
this.startVMToolStripButton.Command = new XenAdmin.Commands.StartVMCommand();
|
|
|
|
resources.ApplyResources(this.startVMToolStripButton, "startVMToolStripButton");
|
|
|
|
this.startVMToolStripButton.Name = "startVMToolStripButton";
|
|
|
|
//
|
|
|
|
// RebootToolbarButton
|
|
|
|
//
|
|
|
|
this.RebootToolbarButton.Command = new XenAdmin.Commands.RebootCommand();
|
|
|
|
resources.ApplyResources(this.RebootToolbarButton, "RebootToolbarButton");
|
|
|
|
this.RebootToolbarButton.Name = "RebootToolbarButton";
|
|
|
|
//
|
|
|
|
// resumeToolStripButton
|
|
|
|
//
|
|
|
|
this.resumeToolStripButton.Command = new XenAdmin.Commands.ResumeVMCommand();
|
|
|
|
resources.ApplyResources(this.resumeToolStripButton, "resumeToolStripButton");
|
|
|
|
this.resumeToolStripButton.Image = global::XenAdmin.Properties.Resources._000_Paused_h32bit_24;
|
|
|
|
this.resumeToolStripButton.Name = "resumeToolStripButton";
|
|
|
|
//
|
|
|
|
// SuspendToolbarButton
|
|
|
|
//
|
|
|
|
this.SuspendToolbarButton.Command = new XenAdmin.Commands.SuspendVMCommand();
|
|
|
|
resources.ApplyResources(this.SuspendToolbarButton, "SuspendToolbarButton");
|
|
|
|
this.SuspendToolbarButton.Image = global::XenAdmin.Properties.Resources._000_Paused_h32bit_24;
|
|
|
|
this.SuspendToolbarButton.Name = "SuspendToolbarButton";
|
|
|
|
//
|
|
|
|
// ForceShutdownToolbarButton
|
|
|
|
//
|
|
|
|
this.ForceShutdownToolbarButton.Command = new XenAdmin.Commands.ForceVMShutDownCommand();
|
|
|
|
resources.ApplyResources(this.ForceShutdownToolbarButton, "ForceShutdownToolbarButton");
|
|
|
|
this.ForceShutdownToolbarButton.Image = global::XenAdmin.Properties.Resources._001_ForceShutDown_h32bit_24;
|
|
|
|
this.ForceShutdownToolbarButton.Name = "ForceShutdownToolbarButton";
|
|
|
|
//
|
|
|
|
// ForceRebootToolbarButton
|
|
|
|
//
|
|
|
|
this.ForceRebootToolbarButton.Command = new XenAdmin.Commands.ForceVMRebootCommand();
|
|
|
|
resources.ApplyResources(this.ForceRebootToolbarButton, "ForceRebootToolbarButton");
|
|
|
|
this.ForceRebootToolbarButton.Image = global::XenAdmin.Properties.Resources._001_ForceReboot_h32bit_24;
|
|
|
|
this.ForceRebootToolbarButton.Name = "ForceRebootToolbarButton";
|
|
|
|
//
|
2015-02-11 14:46:23 +01:00
|
|
|
// stopContainerToolStripButton
|
|
|
|
//
|
|
|
|
this.stopContainerToolStripButton.Command = new XenAdmin.Commands.StopDockerContainerCommand();
|
|
|
|
resources.ApplyResources(this.stopContainerToolStripButton, "stopContainerToolStripButton");
|
|
|
|
this.stopContainerToolStripButton.Image = global::XenAdmin.Properties.Resources._001_ShutDown_h32bit_24;
|
|
|
|
this.stopContainerToolStripButton.Name = "stopContainerToolStripButton";
|
|
|
|
//
|
|
|
|
// startContainerToolStripButton
|
|
|
|
//
|
|
|
|
this.startContainerToolStripButton.Command = new XenAdmin.Commands.StartDockerContainerCommand();
|
|
|
|
resources.ApplyResources(this.startContainerToolStripButton, "startContainerToolStripButton");
|
|
|
|
this.startContainerToolStripButton.Image = global::XenAdmin.Properties.Resources._001_PowerOn_h32bit_24;
|
|
|
|
this.startContainerToolStripButton.Name = "startContainerToolStripButton";
|
|
|
|
//
|
|
|
|
// restartContainerToolStripButton
|
|
|
|
//
|
|
|
|
this.restartContainerToolStripButton.Command = new XenAdmin.Commands.RestartDockerContainerCommand();
|
|
|
|
resources.ApplyResources(this.restartContainerToolStripButton, "restartContainerToolStripButton");
|
|
|
|
this.restartContainerToolStripButton.Image = global::XenAdmin.Properties.Resources._001_Reboot_h32bit_24;
|
|
|
|
this.restartContainerToolStripButton.Name = "restartContainerToolStripButton";
|
|
|
|
//
|
|
|
|
// resumeContainerToolStripButton
|
|
|
|
//
|
|
|
|
this.resumeContainerToolStripButton.Command = new XenAdmin.Commands.ResumeDockerContainerCommand();
|
|
|
|
resources.ApplyResources(this.resumeContainerToolStripButton, "resumeContainerToolStripButton");
|
|
|
|
this.resumeContainerToolStripButton.Image = global::XenAdmin.Properties.Resources._000_Resumed_h32bit_24;
|
|
|
|
this.resumeContainerToolStripButton.Name = "resumeContainerToolStripButton";
|
|
|
|
//
|
|
|
|
// pauseContainerToolStripButton
|
|
|
|
//
|
|
|
|
this.pauseContainerToolStripButton.Command = new XenAdmin.Commands.PauseDockerContainerCommand();
|
|
|
|
resources.ApplyResources(this.pauseContainerToolStripButton, "pauseContainerToolStripButton");
|
|
|
|
this.pauseContainerToolStripButton.Image = global::XenAdmin.Properties.Resources._000_Paused_h32bit_24;
|
|
|
|
this.pauseContainerToolStripButton.Name = "pauseContainerToolStripButton";
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// ToolBarContextMenu
|
|
|
|
//
|
|
|
|
this.ToolBarContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.ShowToolbarMenuItem});
|
|
|
|
this.ToolBarContextMenu.Name = "ToolBarContextMenu";
|
|
|
|
resources.ApplyResources(this.ToolBarContextMenu, "ToolBarContextMenu");
|
|
|
|
//
|
|
|
|
// ShowToolbarMenuItem
|
|
|
|
//
|
|
|
|
this.ShowToolbarMenuItem.Name = "ShowToolbarMenuItem";
|
|
|
|
resources.ApplyResources(this.ShowToolbarMenuItem, "ShowToolbarMenuItem");
|
|
|
|
this.ShowToolbarMenuItem.Click += new System.EventHandler(this.ShowToolbarMenuItem_Click);
|
|
|
|
//
|
|
|
|
// fileToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.fileToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.FileImportVMToolStripMenuItem,
|
|
|
|
this.importSearchToolStripMenuItem,
|
|
|
|
this.toolStripSeparator21,
|
|
|
|
this.importSettingsToolStripMenuItem,
|
|
|
|
this.exportSettingsToolStripMenuItem,
|
|
|
|
this.toolStripSeparator31,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem1,
|
|
|
|
this.exitToolStripMenuItem});
|
|
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// FileImportVMToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.FileImportVMToolStripMenuItem.Command = new XenAdmin.Commands.ImportCommand();
|
|
|
|
this.FileImportVMToolStripMenuItem.Name = "FileImportVMToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.FileImportVMToolStripMenuItem, "FileImportVMToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// importSearchToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.importSearchToolStripMenuItem.Command = new XenAdmin.Commands.ImportSearchCommand();
|
|
|
|
this.importSearchToolStripMenuItem.Name = "importSearchToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.importSearchToolStripMenuItem, "importSearchToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator21
|
|
|
|
//
|
|
|
|
this.toolStripSeparator21.Name = "toolStripSeparator21";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator21, "toolStripSeparator21");
|
|
|
|
//
|
|
|
|
// importSettingsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.importSettingsToolStripMenuItem.Name = "importSettingsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.importSettingsToolStripMenuItem, "importSettingsToolStripMenuItem");
|
|
|
|
this.importSettingsToolStripMenuItem.Click += new System.EventHandler(this.importSettingsToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// exportSettingsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.exportSettingsToolStripMenuItem.Name = "exportSettingsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.exportSettingsToolStripMenuItem, "exportSettingsToolStripMenuItem");
|
|
|
|
this.exportSettingsToolStripMenuItem.Click += new System.EventHandler(this.exportSettingsToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripSeparator31
|
|
|
|
//
|
|
|
|
this.toolStripSeparator31.Name = "toolStripSeparator31";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator31, "toolStripSeparator31");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem1.Name = "pluginItemsPlaceHolderToolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem1, "pluginItemsPlaceHolderToolStripMenuItem1");
|
|
|
|
//
|
|
|
|
// exitToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
|
|
|
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// viewToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.viewToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
|
|
this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2013-10-09 10:13:47 +02:00
|
|
|
this.customTemplatesToolStripMenuItem,
|
|
|
|
this.templatesToolStripMenuItem1,
|
|
|
|
this.localStorageToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.ShowHiddenObjectsToolStripMenuItem,
|
|
|
|
this.toolStripSeparator24,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem,
|
|
|
|
this.toolbarToolStripMenuItem});
|
|
|
|
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.viewToolStripMenuItem, "viewToolStripMenuItem");
|
|
|
|
//
|
2013-11-07 11:00:53 +01:00
|
|
|
// customTemplatesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.customTemplatesToolStripMenuItem.Name = "customTemplatesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.customTemplatesToolStripMenuItem, "customTemplatesToolStripMenuItem");
|
|
|
|
this.customTemplatesToolStripMenuItem.Click += new System.EventHandler(this.customTemplatesToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// templatesToolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.templatesToolStripMenuItem1.Name = "templatesToolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.templatesToolStripMenuItem1, "templatesToolStripMenuItem1");
|
|
|
|
this.templatesToolStripMenuItem1.Click += new System.EventHandler(this.templatesToolStripMenuItem1_Click);
|
|
|
|
//
|
|
|
|
// localStorageToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.localStorageToolStripMenuItem.Name = "localStorageToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.localStorageToolStripMenuItem, "localStorageToolStripMenuItem");
|
|
|
|
this.localStorageToolStripMenuItem.Click += new System.EventHandler(this.localStorageToolStripMenuItem_Click);
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// ShowHiddenObjectsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ShowHiddenObjectsToolStripMenuItem.Name = "ShowHiddenObjectsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.ShowHiddenObjectsToolStripMenuItem, "ShowHiddenObjectsToolStripMenuItem");
|
|
|
|
this.ShowHiddenObjectsToolStripMenuItem.Click += new System.EventHandler(this.ShowHiddenObjectsToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripSeparator24
|
|
|
|
//
|
|
|
|
this.toolStripSeparator24.Name = "toolStripSeparator24";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator24, "toolStripSeparator24");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem.Name = "pluginItemsPlaceHolderToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem, "pluginItemsPlaceHolderToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolbarToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.toolbarToolStripMenuItem.Name = "toolbarToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.toolbarToolStripMenuItem, "toolbarToolStripMenuItem");
|
|
|
|
this.toolbarToolStripMenuItem.Click += new System.EventHandler(this.ShowToolbarMenuItem_Click);
|
|
|
|
//
|
|
|
|
// poolToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.poolToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.AddPoolToolStripMenuItem,
|
|
|
|
this.toolStripSeparator8,
|
|
|
|
this.addServerToolStripMenuItem,
|
|
|
|
this.removeServerToolStripMenuItem,
|
|
|
|
this.poolReconnectAsToolStripMenuItem,
|
|
|
|
this.disconnectPoolToolStripMenuItem,
|
|
|
|
this.toolStripSeparator27,
|
|
|
|
this.virtualAppliancesToolStripMenuItem,
|
|
|
|
this.toolStripSeparator30,
|
|
|
|
this.highAvailabilityToolStripMenuItem,
|
|
|
|
this.disasterRecoveryToolStripMenuItem,
|
2016-01-29 12:34:44 +01:00
|
|
|
this.VMSnapshotScheduleToolStripMenuItem,
|
2014-07-25 09:35:18 +02:00
|
|
|
this.exportResourceReportPoolToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.wlbReportsToolStripMenuItem,
|
|
|
|
this.wlbDisconnectToolStripMenuItem,
|
2019-08-22 11:47:43 +02:00
|
|
|
this.conversionToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator9,
|
|
|
|
this.changePoolPasswordToolStripMenuItem,
|
2020-07-08 13:59:29 +02:00
|
|
|
this.toolStripMenuItemRotateSecret,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripMenuItem1,
|
|
|
|
this.deleteToolStripMenuItem,
|
|
|
|
this.toolStripSeparator26,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem2,
|
|
|
|
this.PoolPropertiesToolStripMenuItem});
|
|
|
|
this.poolToolStripMenuItem.Name = "poolToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.poolToolStripMenuItem, "poolToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// AddPoolToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.AddPoolToolStripMenuItem.Command = new XenAdmin.Commands.NewPoolCommand();
|
|
|
|
this.AddPoolToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._000_PoolNew_h32bit_16;
|
|
|
|
this.AddPoolToolStripMenuItem.Name = "AddPoolToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.AddPoolToolStripMenuItem, "AddPoolToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator8
|
|
|
|
//
|
|
|
|
this.toolStripSeparator8.Name = "toolStripSeparator8";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator8, "toolStripSeparator8");
|
|
|
|
//
|
|
|
|
// addServerToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.addServerToolStripMenuItem.Name = "addServerToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.addServerToolStripMenuItem, "addServerToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// removeServerToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.removeServerToolStripMenuItem.Name = "removeServerToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.removeServerToolStripMenuItem, "removeServerToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// poolReconnectAsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.poolReconnectAsToolStripMenuItem.Command = new XenAdmin.Commands.PoolReconnectAsCommand();
|
|
|
|
this.poolReconnectAsToolStripMenuItem.Name = "poolReconnectAsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.poolReconnectAsToolStripMenuItem, "poolReconnectAsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// disconnectPoolToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.disconnectPoolToolStripMenuItem.Command = new XenAdmin.Commands.DisconnectPoolCommand();
|
|
|
|
this.disconnectPoolToolStripMenuItem.Name = "disconnectPoolToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.disconnectPoolToolStripMenuItem, "disconnectPoolToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator27
|
|
|
|
//
|
|
|
|
this.toolStripSeparator27.Name = "toolStripSeparator27";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator27, "toolStripSeparator27");
|
|
|
|
//
|
|
|
|
// virtualAppliancesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.virtualAppliancesToolStripMenuItem.Command = new XenAdmin.Commands.VMGroupCommandVM_appliance();
|
|
|
|
this.virtualAppliancesToolStripMenuItem.Name = "virtualAppliancesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.virtualAppliancesToolStripMenuItem, "virtualAppliancesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator30
|
|
|
|
//
|
|
|
|
this.toolStripSeparator30.Name = "toolStripSeparator30";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator30, "toolStripSeparator30");
|
|
|
|
//
|
|
|
|
// highAvailabilityToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.highAvailabilityToolStripMenuItem.Command = new XenAdmin.Commands.HACommand();
|
2020-09-14 18:03:26 +02:00
|
|
|
this.highAvailabilityToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.toolStripMenuItemHaConfigure,
|
|
|
|
this.toolStripMenuItemHaDisable});
|
2013-06-24 13:41:48 +02:00
|
|
|
this.highAvailabilityToolStripMenuItem.Name = "highAvailabilityToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.highAvailabilityToolStripMenuItem, "highAvailabilityToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// disasterRecoveryToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.disasterRecoveryToolStripMenuItem.Command = new XenAdmin.Commands.DRCommand();
|
|
|
|
this.disasterRecoveryToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.drConfigureToolStripMenuItem,
|
|
|
|
this.DrWizardToolStripMenuItem});
|
|
|
|
this.disasterRecoveryToolStripMenuItem.Name = "disasterRecoveryToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.disasterRecoveryToolStripMenuItem, "disasterRecoveryToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// drConfigureToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.drConfigureToolStripMenuItem.Command = new XenAdmin.Commands.DRConfigureCommand();
|
|
|
|
this.drConfigureToolStripMenuItem.Name = "drConfigureToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.drConfigureToolStripMenuItem, "drConfigureToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// DrWizardToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.DrWizardToolStripMenuItem.Command = new XenAdmin.Commands.DisasterRecoveryCommand();
|
|
|
|
this.DrWizardToolStripMenuItem.Name = "DrWizardToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.DrWizardToolStripMenuItem, "DrWizardToolStripMenuItem");
|
|
|
|
//
|
2017-05-25 15:56:13 +02:00
|
|
|
// VMSnapshotScheduleToolStripMenuItem
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
2017-05-25 15:56:13 +02:00
|
|
|
this.VMSnapshotScheduleToolStripMenuItem.Command = new XenAdmin.Commands.VMGroupCommandVMSS();
|
|
|
|
this.VMSnapshotScheduleToolStripMenuItem.Name = "VMSnapshotScheduleToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.VMSnapshotScheduleToolStripMenuItem, "VMSnapshotScheduleToolStripMenuItem");
|
2013-06-24 13:41:48 +02:00
|
|
|
//
|
2015-05-18 16:28:37 +02:00
|
|
|
// exportResourceReportPoolToolStripMenuItem
|
2014-07-25 09:35:18 +02:00
|
|
|
//
|
|
|
|
this.exportResourceReportPoolToolStripMenuItem.Command = new XenAdmin.Commands.ExportResourceReportCommand();
|
|
|
|
this.exportResourceReportPoolToolStripMenuItem.Name = "exportResourceReportPoolToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.exportResourceReportPoolToolStripMenuItem, "exportResourceReportPoolToolStripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// wlbReportsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.wlbReportsToolStripMenuItem.Command = new XenAdmin.Commands.ViewWorkloadReportsCommand();
|
|
|
|
this.wlbReportsToolStripMenuItem.Name = "wlbReportsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.wlbReportsToolStripMenuItem, "wlbReportsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// wlbDisconnectToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.wlbDisconnectToolStripMenuItem.Command = new XenAdmin.Commands.DisconnectWlbServerCommand();
|
|
|
|
this.wlbDisconnectToolStripMenuItem.Name = "wlbDisconnectToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.wlbDisconnectToolStripMenuItem, "wlbDisconnectToolStripMenuItem");
|
|
|
|
//
|
2020-03-25 00:28:44 +01:00
|
|
|
// conversionToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.conversionToolStripMenuItem.Command = new XenAdmin.Commands.LaunchConversionManagerCommand();
|
|
|
|
this.conversionToolStripMenuItem.Name = "conversionToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.conversionToolStripMenuItem, "conversionToolStripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator9
|
|
|
|
//
|
|
|
|
this.toolStripSeparator9.Name = "toolStripSeparator9";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator9, "toolStripSeparator9");
|
|
|
|
//
|
|
|
|
// changePoolPasswordToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.changePoolPasswordToolStripMenuItem.Command = new XenAdmin.Commands.ChangeHostPasswordCommand();
|
|
|
|
this.changePoolPasswordToolStripMenuItem.Name = "changePoolPasswordToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.changePoolPasswordToolStripMenuItem, "changePoolPasswordToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
|
|
|
|
//
|
|
|
|
// deleteToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.deleteToolStripMenuItem.Command = new XenAdmin.Commands.DeletePoolCommand();
|
|
|
|
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator26
|
|
|
|
//
|
|
|
|
this.toolStripSeparator26.Name = "toolStripSeparator26";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator26, "toolStripSeparator26");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem2
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem2.Name = "pluginItemsPlaceHolderToolStripMenuItem2";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem2, "pluginItemsPlaceHolderToolStripMenuItem2");
|
|
|
|
//
|
|
|
|
// PoolPropertiesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.PoolPropertiesToolStripMenuItem.Command = new XenAdmin.Commands.PoolPropertiesCommand();
|
|
|
|
this.PoolPropertiesToolStripMenuItem.Image = global::XenAdmin.Properties.Resources.edit_16;
|
|
|
|
this.PoolPropertiesToolStripMenuItem.Name = "PoolPropertiesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.PoolPropertiesToolStripMenuItem, "PoolPropertiesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// HostMenuItem
|
|
|
|
//
|
|
|
|
this.HostMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.AddHostToolStripMenuItem,
|
|
|
|
this.toolStripMenuItem11,
|
|
|
|
this.RebootHostToolStripMenuItem,
|
|
|
|
this.powerOnToolStripMenuItem,
|
|
|
|
this.ShutdownHostToolStripMenuItem,
|
|
|
|
this.restartToolstackToolStripMenuItem,
|
|
|
|
this.toolStripSeparator1,
|
|
|
|
this.connectDisconnectToolStripMenuItem,
|
|
|
|
this.addServerToPoolMenuItem,
|
2019-08-08 02:15:10 +02:00
|
|
|
this.menuItemRemoveFromPool,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator3,
|
|
|
|
this.backupToolStripMenuItem,
|
|
|
|
this.restoreFromBackupToolStripMenuItem,
|
|
|
|
this.toolStripSeparator23,
|
2020-03-25 00:28:44 +01:00
|
|
|
this.toolStripMenuItemInstallCertificate,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.maintenanceModeToolStripMenuItem1,
|
2016-08-01 10:25:10 +02:00
|
|
|
this.controlDomainMemoryToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.RemoveCrashdumpsToolStripMenuItem,
|
|
|
|
this.HostPasswordToolStripMenuItem,
|
|
|
|
this.toolStripSeparator25,
|
|
|
|
this.destroyServerToolStripMenuItem,
|
|
|
|
this.removeHostToolStripMenuItem,
|
|
|
|
this.toolStripSeparator15,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem3,
|
|
|
|
this.ServerPropertiesToolStripMenuItem});
|
|
|
|
this.HostMenuItem.Name = "HostMenuItem";
|
|
|
|
resources.ApplyResources(this.HostMenuItem, "HostMenuItem");
|
|
|
|
//
|
|
|
|
// AddHostToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.AddHostToolStripMenuItem.Command = new XenAdmin.Commands.AddHostCommand();
|
|
|
|
this.AddHostToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._000_AddApplicationServer_h32bit_16;
|
|
|
|
this.AddHostToolStripMenuItem.Name = "AddHostToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.AddHostToolStripMenuItem, "AddHostToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripMenuItem11
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem11.Name = "toolStripMenuItem11";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem11, "toolStripMenuItem11");
|
|
|
|
//
|
|
|
|
// RebootHostToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.RebootHostToolStripMenuItem.Command = new XenAdmin.Commands.RebootHostCommand();
|
|
|
|
this.RebootHostToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._001_Reboot_h32bit_16;
|
|
|
|
this.RebootHostToolStripMenuItem.Name = "RebootHostToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.RebootHostToolStripMenuItem, "RebootHostToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// powerOnToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.powerOnToolStripMenuItem.Command = new XenAdmin.Commands.PowerOnHostCommand();
|
|
|
|
resources.ApplyResources(this.powerOnToolStripMenuItem, "powerOnToolStripMenuItem");
|
|
|
|
this.powerOnToolStripMenuItem.Name = "powerOnToolStripMenuItem";
|
|
|
|
//
|
|
|
|
// ShutdownHostToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ShutdownHostToolStripMenuItem.Command = new XenAdmin.Commands.ShutDownHostCommand();
|
|
|
|
resources.ApplyResources(this.ShutdownHostToolStripMenuItem, "ShutdownHostToolStripMenuItem");
|
|
|
|
this.ShutdownHostToolStripMenuItem.Name = "ShutdownHostToolStripMenuItem";
|
|
|
|
//
|
|
|
|
// restartToolstackToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.restartToolstackToolStripMenuItem.Command = new XenAdmin.Commands.RestartToolstackCommand();
|
|
|
|
this.restartToolstackToolStripMenuItem.Name = "restartToolstackToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.restartToolstackToolStripMenuItem, "restartToolstackToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator1
|
|
|
|
//
|
|
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
|
|
|
|
//
|
|
|
|
// connectDisconnectToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.connectDisconnectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.ReconnectToolStripMenuItem1,
|
|
|
|
this.DisconnectToolStripMenuItem,
|
|
|
|
this.reconnectAsToolStripMenuItem,
|
|
|
|
this.toolStripSeparator4,
|
|
|
|
this.connectAllToolStripMenuItem,
|
|
|
|
this.disconnectAllToolStripMenuItem});
|
|
|
|
this.connectDisconnectToolStripMenuItem.Name = "connectDisconnectToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.connectDisconnectToolStripMenuItem, "connectDisconnectToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// ReconnectToolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.ReconnectToolStripMenuItem1.Command = new XenAdmin.Commands.ReconnectHostCommand();
|
|
|
|
this.ReconnectToolStripMenuItem1.Name = "ReconnectToolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.ReconnectToolStripMenuItem1, "ReconnectToolStripMenuItem1");
|
|
|
|
//
|
|
|
|
// DisconnectToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.DisconnectToolStripMenuItem.Command = new XenAdmin.Commands.DisconnectHostCommand();
|
|
|
|
this.DisconnectToolStripMenuItem.Name = "DisconnectToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.DisconnectToolStripMenuItem, "DisconnectToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// reconnectAsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.reconnectAsToolStripMenuItem.Command = new XenAdmin.Commands.HostReconnectAsCommand();
|
|
|
|
this.reconnectAsToolStripMenuItem.Name = "reconnectAsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.reconnectAsToolStripMenuItem, "reconnectAsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator4
|
|
|
|
//
|
|
|
|
this.toolStripSeparator4.Name = "toolStripSeparator4";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
|
|
|
|
//
|
|
|
|
// connectAllToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.connectAllToolStripMenuItem.Command = new XenAdmin.Commands.ConnectAllHostsCommand();
|
|
|
|
this.connectAllToolStripMenuItem.Name = "connectAllToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.connectAllToolStripMenuItem, "connectAllToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// disconnectAllToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.disconnectAllToolStripMenuItem.Command = new XenAdmin.Commands.DisconnectAllHostsCommand();
|
|
|
|
this.disconnectAllToolStripMenuItem.Name = "disconnectAllToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.disconnectAllToolStripMenuItem, "disconnectAllToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// addServerToPoolMenuItem
|
|
|
|
//
|
|
|
|
this.addServerToPoolMenuItem.Name = "addServerToPoolMenuItem";
|
|
|
|
resources.ApplyResources(this.addServerToPoolMenuItem, "addServerToPoolMenuItem");
|
|
|
|
//
|
2020-03-25 00:28:44 +01:00
|
|
|
// menuItemRemoveFromPool
|
|
|
|
//
|
|
|
|
this.menuItemRemoveFromPool.Command = new XenAdmin.Commands.RemoveHostFromPoolCommand();
|
|
|
|
this.menuItemRemoveFromPool.Name = "menuItemRemoveFromPool";
|
|
|
|
resources.ApplyResources(this.menuItemRemoveFromPool, "menuItemRemoveFromPool");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator3
|
|
|
|
//
|
|
|
|
this.toolStripSeparator3.Name = "toolStripSeparator3";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
|
|
|
|
//
|
|
|
|
// backupToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.backupToolStripMenuItem.Command = new XenAdmin.Commands.BackupHostCommand();
|
|
|
|
this.backupToolStripMenuItem.Name = "backupToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.backupToolStripMenuItem, "backupToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// restoreFromBackupToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.restoreFromBackupToolStripMenuItem.Command = new XenAdmin.Commands.RestoreHostFromBackupCommand();
|
|
|
|
this.restoreFromBackupToolStripMenuItem.Name = "restoreFromBackupToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.restoreFromBackupToolStripMenuItem, "restoreFromBackupToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator23
|
|
|
|
//
|
|
|
|
this.toolStripSeparator23.Name = "toolStripSeparator23";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator23, "toolStripSeparator23");
|
|
|
|
//
|
2020-07-08 13:59:29 +02:00
|
|
|
// toolStripMenuItemInstallCertificate
|
|
|
|
//
|
|
|
|
this.toolStripMenuItemInstallCertificate.Command = new XenAdmin.Commands.InstallCertificateCommand();
|
|
|
|
this.toolStripMenuItemInstallCertificate.Name = "toolStripMenuItemInstallCertificate";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItemInstallCertificate, "toolStripMenuItemInstallCertificate");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// maintenanceModeToolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.maintenanceModeToolStripMenuItem1.Command = new XenAdmin.Commands.HostMaintenanceModeCommand();
|
|
|
|
this.maintenanceModeToolStripMenuItem1.Name = "maintenanceModeToolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.maintenanceModeToolStripMenuItem1, "maintenanceModeToolStripMenuItem1");
|
|
|
|
//
|
2016-08-01 10:25:10 +02:00
|
|
|
// controlDomainMemoryToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.controlDomainMemoryToolStripMenuItem.Command = new XenAdmin.Commands.ChangeControlDomainMemoryCommand();
|
|
|
|
this.controlDomainMemoryToolStripMenuItem.Name = "controlDomainMemoryToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.controlDomainMemoryToolStripMenuItem, "controlDomainMemoryToolStripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// RemoveCrashdumpsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.RemoveCrashdumpsToolStripMenuItem.Command = new XenAdmin.Commands.RemoveHostCrashDumpsCommand();
|
|
|
|
this.RemoveCrashdumpsToolStripMenuItem.Name = "RemoveCrashdumpsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.RemoveCrashdumpsToolStripMenuItem, "RemoveCrashdumpsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// HostPasswordToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.HostPasswordToolStripMenuItem.Command = new XenAdmin.Commands.HostPasswordCommand();
|
|
|
|
this.HostPasswordToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.ChangeRootPasswordToolStripMenuItem,
|
|
|
|
this.forgetSavedPasswordToolStripMenuItem});
|
|
|
|
this.HostPasswordToolStripMenuItem.Name = "HostPasswordToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.HostPasswordToolStripMenuItem, "HostPasswordToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// ChangeRootPasswordToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ChangeRootPasswordToolStripMenuItem.Command = new XenAdmin.Commands.ChangeHostPasswordCommand();
|
|
|
|
this.ChangeRootPasswordToolStripMenuItem.Name = "ChangeRootPasswordToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.ChangeRootPasswordToolStripMenuItem, "ChangeRootPasswordToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// forgetSavedPasswordToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.forgetSavedPasswordToolStripMenuItem.Command = new XenAdmin.Commands.ForgetSavedPasswordCommand();
|
|
|
|
this.forgetSavedPasswordToolStripMenuItem.Name = "forgetSavedPasswordToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.forgetSavedPasswordToolStripMenuItem, "forgetSavedPasswordToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator25
|
|
|
|
//
|
|
|
|
this.toolStripSeparator25.Name = "toolStripSeparator25";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator25, "toolStripSeparator25");
|
|
|
|
//
|
|
|
|
// destroyServerToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.destroyServerToolStripMenuItem.Command = new XenAdmin.Commands.DestroyHostCommand();
|
|
|
|
this.destroyServerToolStripMenuItem.Name = "destroyServerToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.destroyServerToolStripMenuItem, "destroyServerToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// removeHostToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.removeHostToolStripMenuItem.Command = new XenAdmin.Commands.RemoveHostCommand();
|
|
|
|
this.removeHostToolStripMenuItem.Name = "removeHostToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.removeHostToolStripMenuItem, "removeHostToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator15
|
|
|
|
//
|
|
|
|
this.toolStripSeparator15.Name = "toolStripSeparator15";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator15, "toolStripSeparator15");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem3
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem3.Name = "pluginItemsPlaceHolderToolStripMenuItem3";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem3, "pluginItemsPlaceHolderToolStripMenuItem3");
|
|
|
|
//
|
|
|
|
// ServerPropertiesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ServerPropertiesToolStripMenuItem.Command = new XenAdmin.Commands.HostPropertiesCommand();
|
|
|
|
this.ServerPropertiesToolStripMenuItem.Image = global::XenAdmin.Properties.Resources.edit_16;
|
|
|
|
this.ServerPropertiesToolStripMenuItem.Name = "ServerPropertiesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.ServerPropertiesToolStripMenuItem, "ServerPropertiesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// VMToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.VMToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.NewVmToolStripMenuItem,
|
|
|
|
this.startShutdownToolStripMenuItem,
|
|
|
|
this.resumeOnToolStripMenuItem,
|
|
|
|
this.relocateToolStripMenuItem,
|
|
|
|
this.startOnHostToolStripMenuItem,
|
|
|
|
this.toolStripSeparator20,
|
2016-01-27 11:36:48 +01:00
|
|
|
this.assignSnapshotScheduleToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.assignToVirtualApplianceToolStripMenuItem,
|
|
|
|
this.toolStripMenuItem9,
|
|
|
|
this.copyVMtoSharedStorageMenuItem,
|
|
|
|
this.MoveVMToolStripMenuItem,
|
|
|
|
this.snapshotToolStripMenuItem,
|
|
|
|
this.convertToTemplateToolStripMenuItem,
|
|
|
|
this.exportToolStripMenuItem,
|
2017-09-08 15:01:39 +02:00
|
|
|
this.disableCbtToolStripMenuItem,
|
CP-16922: Implement GUI for enabling PVS read caching (#1179)
* CP-16922: UI changes to PvsPage to replace the single configure button with a separate enable and disable one, per the design doc
* CP-16922: Intermediate checkin - command + dialog implemented, but PVS page has some layout problems.
* CP-16922: Implement GUI for enabling PVS read caching and marking/unmarking VMs for prepopulation
Fix the broken layout by reverting MainWindow.resx (which shouldn't have changed) back to the previous commit. Also removed duplicate properties button code.
* CP-16922: PVS Page changes, to properly display all VMs (not just ones with proxy), only populating proxy columns if there is a proxy set.
* CP-16922: Use a CommandButton for the enable button, connected to the same command as the VM main menu button, and using the table selection as its selection manager.
* CP-16922: Delete the old enable button click behaviour (because it now has a proper command), was causing the dialog to show up twice
* CP-16922: Properly list VMs by hiding those that should be hidden (in addition to non-VMs, also hide the __gui__ prefix and others covered by Show function). Also fixes a bug in NewVMGroupVMsPage discovered when fixing this - it would show VMs that should be hidden if you used the search bar.
* CP-16922: Use ButtonText on the Command to set the text on the PVS enable button
* CP-16922: Add the disable PVS read-caching command, and its associated proxy destroy action. Both based off enable equivalents (main difference is no dialog for now). Not used yet but will be in main window menu + disable button
* CP-16922: Add disable PVS read-caching to the main window menu (under enable), with the disable command attached to it
* CP-16922: Add support for disabling PVS read-caching for selected hosts via the PVS tab page by converting the disable button into a CommandButton in the same way as the enable button, using its own command + selection manager (because Selection Managers only bind to one control)
* CP-16922: Design - adding the "read caching enabled" column from the design, so that we display both whether caching is enabled and whether the VM is currently cached. If it's disabled all other values are missing.
* CP-16922: Add the PVS site column per the design to show the site a VM's PVS Proxy is on if it has a proxy
* CP-16922: Add an event handler for VMs changing so that newly provisioned VMs immediately show up in the PVS tab page
* CP-16922: Support for properly remembering the selection when the VM list is refreshed. A new method returns the list of VMs for the selected rows, and we can then check if the VM for the row being added is in this list. If there was no previous selection then we still select the first row by default.
* CP-16922: Remove prepopulate, which is being removed from the design. The next XAPI version will remove it, so just pass False as prepopulate for now, and remove the option from the dialog and PVS tab page.
* CP-16922: Improve UI appearance for a missing Storage Repository. Per the design, if there is no SR show the message None (memory only) instead of an empty cell
* CP-16922: Improved sorting behaviour. All columns (except VM name, which always uses it) use the VM tag as a sorting fallback (since they all have duplicates). New default sort which sorts by caching enabled first (yes before no), and then VM tag as a tiebreaker. Support for remembering the current sort on refresh, ie when a value changes.
* CP-16922: Refactoring to use a VM extension method to get the PVSProxy (or null if none exists) for a VM. This was used in the PVS Page + commands which are now much simpler.
* CP-16922: Move where the SelectionChanged event handler is set when refreshing the PVS table, so that the command buttons are updated correctly.
* CP-16922: Improvements to PVS read-caching dialog. Set accept/cancel buttons properly + adjust tab values, so focus acts as expected
* CP-16922: Remove the images from the menu for Enable/Disable PVS read-caching, most commands in the menu don't have one
* CP-16922: Sorting out the strings for the actions + ParallelAction calls, and moving them into the resx. Also reverting wrong MainWindow.resx changes.
* CAR-2184: XAPI changes. I've made the minimal possible changes to PvsPage to ensure it compiles, but it's had a lot of feature work (CP-16922) that supersedes this, these small changes should keep that merge painless.
* CAR-2184 XAPI: Reverse the unrelated changes, only keep the PVS ones.
* CP-16922: Merge latest XAPI changes, notably changes to Pvs_site.create
* CP-16922: Change tab show/hide logic for PVS tab, show it even if there are no PVS sites.
* CP-16922: Implement GUI for enabling PVS read caching
Design changes - remove the storage repo column and replace it with status, which is populated with a friendly version of the pvs_proxy_status enum. Also populate site list using site.name_label
Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
* CP-16922: Implement GUI for enabling PVS read caching
Adjusting the CanExecute of Enable PVS read-caching command to require at least one PVS site to be created. Since the PVS tab can show up without any sites, we need this because we can't create a proxy without a site.
* CP-16922: Code review changes.
Tidied up messages, and ensured actions run async properly, and without exiting before their task.
* CP-16922: Code review changes.
Update dialog resx, wider combobox on dialog, update action descriptions before setting RelatedTask, add friendly message body for PVS error notifications.
2016-09-22 16:08:15 +02:00
|
|
|
this.enablePVSReadcachingToolStripMenuItem,
|
|
|
|
this.disablePVSReadcachingToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripMenuItem12,
|
|
|
|
this.installToolsToolStripMenuItem,
|
|
|
|
this.sendCtrlAltDelToolStripMenuItem,
|
|
|
|
this.toolStripSeparator5,
|
|
|
|
this.uninstallToolStripMenuItem,
|
|
|
|
this.toolStripSeparator10,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem4,
|
|
|
|
this.VMPropertiesToolStripMenuItem});
|
|
|
|
this.VMToolStripMenuItem.Name = "VMToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.VMToolStripMenuItem, "VMToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// NewVmToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.NewVmToolStripMenuItem.Command = new XenAdmin.Commands.NewVMCommand();
|
|
|
|
this.NewVmToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._001_CreateVM_h32bit_16;
|
|
|
|
this.NewVmToolStripMenuItem.Name = "NewVmToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.NewVmToolStripMenuItem, "NewVmToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// startShutdownToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.startShutdownToolStripMenuItem.Name = "startShutdownToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.startShutdownToolStripMenuItem, "startShutdownToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// resumeOnToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.resumeOnToolStripMenuItem.Name = "resumeOnToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.resumeOnToolStripMenuItem, "resumeOnToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// relocateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.relocateToolStripMenuItem.Name = "relocateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.relocateToolStripMenuItem, "relocateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// startOnHostToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.startOnHostToolStripMenuItem.Name = "startOnHostToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.startOnHostToolStripMenuItem, "startOnHostToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator20
|
|
|
|
//
|
|
|
|
this.toolStripSeparator20.Name = "toolStripSeparator20";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator20, "toolStripSeparator20");
|
|
|
|
//
|
2016-01-29 12:34:44 +01:00
|
|
|
// assignSnapshotScheduleToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.assignSnapshotScheduleToolStripMenuItem.Name = "assignSnapshotScheduleToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.assignSnapshotScheduleToolStripMenuItem, "assignSnapshotScheduleToolStripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// assignToVirtualApplianceToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.assignToVirtualApplianceToolStripMenuItem.Name = "assignToVirtualApplianceToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.assignToVirtualApplianceToolStripMenuItem, "assignToVirtualApplianceToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripMenuItem9
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem9.Name = "toolStripMenuItem9";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem9, "toolStripMenuItem9");
|
|
|
|
//
|
|
|
|
// copyVMtoSharedStorageMenuItem
|
|
|
|
//
|
|
|
|
this.copyVMtoSharedStorageMenuItem.Command = new XenAdmin.Commands.CopyVMCommand();
|
|
|
|
this.copyVMtoSharedStorageMenuItem.Name = "copyVMtoSharedStorageMenuItem";
|
|
|
|
resources.ApplyResources(this.copyVMtoSharedStorageMenuItem, "copyVMtoSharedStorageMenuItem");
|
|
|
|
//
|
|
|
|
// MoveVMToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.MoveVMToolStripMenuItem.Command = new XenAdmin.Commands.MoveVMCommand();
|
|
|
|
this.MoveVMToolStripMenuItem.Name = "MoveVMToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.MoveVMToolStripMenuItem, "MoveVMToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// snapshotToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.snapshotToolStripMenuItem.Command = new XenAdmin.Commands.TakeSnapshotCommand();
|
|
|
|
this.snapshotToolStripMenuItem.Name = "snapshotToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.snapshotToolStripMenuItem, "snapshotToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// convertToTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.convertToTemplateToolStripMenuItem.Command = new XenAdmin.Commands.ConvertVMToTemplateCommand();
|
|
|
|
this.convertToTemplateToolStripMenuItem.Name = "convertToTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.convertToTemplateToolStripMenuItem, "convertToTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// exportToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.exportToolStripMenuItem.Command = new XenAdmin.Commands.ExportCommand();
|
|
|
|
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
|
|
|
|
//
|
2019-04-02 15:12:25 +02:00
|
|
|
// disableCbtToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.disableCbtToolStripMenuItem.Command = new XenAdmin.Commands.DisableChangedBlockTrackingCommand();
|
|
|
|
this.disableCbtToolStripMenuItem.Name = "disableCbtToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.disableCbtToolStripMenuItem, "disableCbtToolStripMenuItem");
|
|
|
|
//
|
CP-16922: Implement GUI for enabling PVS read caching (#1179)
* CP-16922: UI changes to PvsPage to replace the single configure button with a separate enable and disable one, per the design doc
* CP-16922: Intermediate checkin - command + dialog implemented, but PVS page has some layout problems.
* CP-16922: Implement GUI for enabling PVS read caching and marking/unmarking VMs for prepopulation
Fix the broken layout by reverting MainWindow.resx (which shouldn't have changed) back to the previous commit. Also removed duplicate properties button code.
* CP-16922: PVS Page changes, to properly display all VMs (not just ones with proxy), only populating proxy columns if there is a proxy set.
* CP-16922: Use a CommandButton for the enable button, connected to the same command as the VM main menu button, and using the table selection as its selection manager.
* CP-16922: Delete the old enable button click behaviour (because it now has a proper command), was causing the dialog to show up twice
* CP-16922: Properly list VMs by hiding those that should be hidden (in addition to non-VMs, also hide the __gui__ prefix and others covered by Show function). Also fixes a bug in NewVMGroupVMsPage discovered when fixing this - it would show VMs that should be hidden if you used the search bar.
* CP-16922: Use ButtonText on the Command to set the text on the PVS enable button
* CP-16922: Add the disable PVS read-caching command, and its associated proxy destroy action. Both based off enable equivalents (main difference is no dialog for now). Not used yet but will be in main window menu + disable button
* CP-16922: Add disable PVS read-caching to the main window menu (under enable), with the disable command attached to it
* CP-16922: Add support for disabling PVS read-caching for selected hosts via the PVS tab page by converting the disable button into a CommandButton in the same way as the enable button, using its own command + selection manager (because Selection Managers only bind to one control)
* CP-16922: Design - adding the "read caching enabled" column from the design, so that we display both whether caching is enabled and whether the VM is currently cached. If it's disabled all other values are missing.
* CP-16922: Add the PVS site column per the design to show the site a VM's PVS Proxy is on if it has a proxy
* CP-16922: Add an event handler for VMs changing so that newly provisioned VMs immediately show up in the PVS tab page
* CP-16922: Support for properly remembering the selection when the VM list is refreshed. A new method returns the list of VMs for the selected rows, and we can then check if the VM for the row being added is in this list. If there was no previous selection then we still select the first row by default.
* CP-16922: Remove prepopulate, which is being removed from the design. The next XAPI version will remove it, so just pass False as prepopulate for now, and remove the option from the dialog and PVS tab page.
* CP-16922: Improve UI appearance for a missing Storage Repository. Per the design, if there is no SR show the message None (memory only) instead of an empty cell
* CP-16922: Improved sorting behaviour. All columns (except VM name, which always uses it) use the VM tag as a sorting fallback (since they all have duplicates). New default sort which sorts by caching enabled first (yes before no), and then VM tag as a tiebreaker. Support for remembering the current sort on refresh, ie when a value changes.
* CP-16922: Refactoring to use a VM extension method to get the PVSProxy (or null if none exists) for a VM. This was used in the PVS Page + commands which are now much simpler.
* CP-16922: Move where the SelectionChanged event handler is set when refreshing the PVS table, so that the command buttons are updated correctly.
* CP-16922: Improvements to PVS read-caching dialog. Set accept/cancel buttons properly + adjust tab values, so focus acts as expected
* CP-16922: Remove the images from the menu for Enable/Disable PVS read-caching, most commands in the menu don't have one
* CP-16922: Sorting out the strings for the actions + ParallelAction calls, and moving them into the resx. Also reverting wrong MainWindow.resx changes.
* CAR-2184: XAPI changes. I've made the minimal possible changes to PvsPage to ensure it compiles, but it's had a lot of feature work (CP-16922) that supersedes this, these small changes should keep that merge painless.
* CAR-2184 XAPI: Reverse the unrelated changes, only keep the PVS ones.
* CP-16922: Merge latest XAPI changes, notably changes to Pvs_site.create
* CP-16922: Change tab show/hide logic for PVS tab, show it even if there are no PVS sites.
* CP-16922: Implement GUI for enabling PVS read caching
Design changes - remove the storage repo column and replace it with status, which is populated with a friendly version of the pvs_proxy_status enum. Also populate site list using site.name_label
Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
* CP-16922: Implement GUI for enabling PVS read caching
Adjusting the CanExecute of Enable PVS read-caching command to require at least one PVS site to be created. Since the PVS tab can show up without any sites, we need this because we can't create a proxy without a site.
* CP-16922: Code review changes.
Tidied up messages, and ensured actions run async properly, and without exiting before their task.
* CP-16922: Code review changes.
Update dialog resx, wider combobox on dialog, update action descriptions before setting RelatedTask, add friendly message body for PVS error notifications.
2016-09-22 16:08:15 +02:00
|
|
|
// enablePVSReadcachingToolStripMenuItem
|
|
|
|
//
|
2018-09-28 18:58:49 +02:00
|
|
|
this.enablePVSReadcachingToolStripMenuItem.Command = new XenAdmin.Commands.EnablePvsReadCachingCommand();
|
CP-16922: Implement GUI for enabling PVS read caching (#1179)
* CP-16922: UI changes to PvsPage to replace the single configure button with a separate enable and disable one, per the design doc
* CP-16922: Intermediate checkin - command + dialog implemented, but PVS page has some layout problems.
* CP-16922: Implement GUI for enabling PVS read caching and marking/unmarking VMs for prepopulation
Fix the broken layout by reverting MainWindow.resx (which shouldn't have changed) back to the previous commit. Also removed duplicate properties button code.
* CP-16922: PVS Page changes, to properly display all VMs (not just ones with proxy), only populating proxy columns if there is a proxy set.
* CP-16922: Use a CommandButton for the enable button, connected to the same command as the VM main menu button, and using the table selection as its selection manager.
* CP-16922: Delete the old enable button click behaviour (because it now has a proper command), was causing the dialog to show up twice
* CP-16922: Properly list VMs by hiding those that should be hidden (in addition to non-VMs, also hide the __gui__ prefix and others covered by Show function). Also fixes a bug in NewVMGroupVMsPage discovered when fixing this - it would show VMs that should be hidden if you used the search bar.
* CP-16922: Use ButtonText on the Command to set the text on the PVS enable button
* CP-16922: Add the disable PVS read-caching command, and its associated proxy destroy action. Both based off enable equivalents (main difference is no dialog for now). Not used yet but will be in main window menu + disable button
* CP-16922: Add disable PVS read-caching to the main window menu (under enable), with the disable command attached to it
* CP-16922: Add support for disabling PVS read-caching for selected hosts via the PVS tab page by converting the disable button into a CommandButton in the same way as the enable button, using its own command + selection manager (because Selection Managers only bind to one control)
* CP-16922: Design - adding the "read caching enabled" column from the design, so that we display both whether caching is enabled and whether the VM is currently cached. If it's disabled all other values are missing.
* CP-16922: Add the PVS site column per the design to show the site a VM's PVS Proxy is on if it has a proxy
* CP-16922: Add an event handler for VMs changing so that newly provisioned VMs immediately show up in the PVS tab page
* CP-16922: Support for properly remembering the selection when the VM list is refreshed. A new method returns the list of VMs for the selected rows, and we can then check if the VM for the row being added is in this list. If there was no previous selection then we still select the first row by default.
* CP-16922: Remove prepopulate, which is being removed from the design. The next XAPI version will remove it, so just pass False as prepopulate for now, and remove the option from the dialog and PVS tab page.
* CP-16922: Improve UI appearance for a missing Storage Repository. Per the design, if there is no SR show the message None (memory only) instead of an empty cell
* CP-16922: Improved sorting behaviour. All columns (except VM name, which always uses it) use the VM tag as a sorting fallback (since they all have duplicates). New default sort which sorts by caching enabled first (yes before no), and then VM tag as a tiebreaker. Support for remembering the current sort on refresh, ie when a value changes.
* CP-16922: Refactoring to use a VM extension method to get the PVSProxy (or null if none exists) for a VM. This was used in the PVS Page + commands which are now much simpler.
* CP-16922: Move where the SelectionChanged event handler is set when refreshing the PVS table, so that the command buttons are updated correctly.
* CP-16922: Improvements to PVS read-caching dialog. Set accept/cancel buttons properly + adjust tab values, so focus acts as expected
* CP-16922: Remove the images from the menu for Enable/Disable PVS read-caching, most commands in the menu don't have one
* CP-16922: Sorting out the strings for the actions + ParallelAction calls, and moving them into the resx. Also reverting wrong MainWindow.resx changes.
* CAR-2184: XAPI changes. I've made the minimal possible changes to PvsPage to ensure it compiles, but it's had a lot of feature work (CP-16922) that supersedes this, these small changes should keep that merge painless.
* CAR-2184 XAPI: Reverse the unrelated changes, only keep the PVS ones.
* CP-16922: Merge latest XAPI changes, notably changes to Pvs_site.create
* CP-16922: Change tab show/hide logic for PVS tab, show it even if there are no PVS sites.
* CP-16922: Implement GUI for enabling PVS read caching
Design changes - remove the storage repo column and replace it with status, which is populated with a friendly version of the pvs_proxy_status enum. Also populate site list using site.name_label
Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
* CP-16922: Implement GUI for enabling PVS read caching
Adjusting the CanExecute of Enable PVS read-caching command to require at least one PVS site to be created. Since the PVS tab can show up without any sites, we need this because we can't create a proxy without a site.
* CP-16922: Code review changes.
Tidied up messages, and ensured actions run async properly, and without exiting before their task.
* CP-16922: Code review changes.
Update dialog resx, wider combobox on dialog, update action descriptions before setting RelatedTask, add friendly message body for PVS error notifications.
2016-09-22 16:08:15 +02:00
|
|
|
this.enablePVSReadcachingToolStripMenuItem.Name = "enablePVSReadcachingToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.enablePVSReadcachingToolStripMenuItem, "enablePVSReadcachingToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// disablePVSReadcachingToolStripMenuItem
|
|
|
|
//
|
2018-09-28 18:58:49 +02:00
|
|
|
this.disablePVSReadcachingToolStripMenuItem.Command = new XenAdmin.Commands.DisablePvsReadCachingCommand();
|
CP-16922: Implement GUI for enabling PVS read caching (#1179)
* CP-16922: UI changes to PvsPage to replace the single configure button with a separate enable and disable one, per the design doc
* CP-16922: Intermediate checkin - command + dialog implemented, but PVS page has some layout problems.
* CP-16922: Implement GUI for enabling PVS read caching and marking/unmarking VMs for prepopulation
Fix the broken layout by reverting MainWindow.resx (which shouldn't have changed) back to the previous commit. Also removed duplicate properties button code.
* CP-16922: PVS Page changes, to properly display all VMs (not just ones with proxy), only populating proxy columns if there is a proxy set.
* CP-16922: Use a CommandButton for the enable button, connected to the same command as the VM main menu button, and using the table selection as its selection manager.
* CP-16922: Delete the old enable button click behaviour (because it now has a proper command), was causing the dialog to show up twice
* CP-16922: Properly list VMs by hiding those that should be hidden (in addition to non-VMs, also hide the __gui__ prefix and others covered by Show function). Also fixes a bug in NewVMGroupVMsPage discovered when fixing this - it would show VMs that should be hidden if you used the search bar.
* CP-16922: Use ButtonText on the Command to set the text on the PVS enable button
* CP-16922: Add the disable PVS read-caching command, and its associated proxy destroy action. Both based off enable equivalents (main difference is no dialog for now). Not used yet but will be in main window menu + disable button
* CP-16922: Add disable PVS read-caching to the main window menu (under enable), with the disable command attached to it
* CP-16922: Add support for disabling PVS read-caching for selected hosts via the PVS tab page by converting the disable button into a CommandButton in the same way as the enable button, using its own command + selection manager (because Selection Managers only bind to one control)
* CP-16922: Design - adding the "read caching enabled" column from the design, so that we display both whether caching is enabled and whether the VM is currently cached. If it's disabled all other values are missing.
* CP-16922: Add the PVS site column per the design to show the site a VM's PVS Proxy is on if it has a proxy
* CP-16922: Add an event handler for VMs changing so that newly provisioned VMs immediately show up in the PVS tab page
* CP-16922: Support for properly remembering the selection when the VM list is refreshed. A new method returns the list of VMs for the selected rows, and we can then check if the VM for the row being added is in this list. If there was no previous selection then we still select the first row by default.
* CP-16922: Remove prepopulate, which is being removed from the design. The next XAPI version will remove it, so just pass False as prepopulate for now, and remove the option from the dialog and PVS tab page.
* CP-16922: Improve UI appearance for a missing Storage Repository. Per the design, if there is no SR show the message None (memory only) instead of an empty cell
* CP-16922: Improved sorting behaviour. All columns (except VM name, which always uses it) use the VM tag as a sorting fallback (since they all have duplicates). New default sort which sorts by caching enabled first (yes before no), and then VM tag as a tiebreaker. Support for remembering the current sort on refresh, ie when a value changes.
* CP-16922: Refactoring to use a VM extension method to get the PVSProxy (or null if none exists) for a VM. This was used in the PVS Page + commands which are now much simpler.
* CP-16922: Move where the SelectionChanged event handler is set when refreshing the PVS table, so that the command buttons are updated correctly.
* CP-16922: Improvements to PVS read-caching dialog. Set accept/cancel buttons properly + adjust tab values, so focus acts as expected
* CP-16922: Remove the images from the menu for Enable/Disable PVS read-caching, most commands in the menu don't have one
* CP-16922: Sorting out the strings for the actions + ParallelAction calls, and moving them into the resx. Also reverting wrong MainWindow.resx changes.
* CAR-2184: XAPI changes. I've made the minimal possible changes to PvsPage to ensure it compiles, but it's had a lot of feature work (CP-16922) that supersedes this, these small changes should keep that merge painless.
* CAR-2184 XAPI: Reverse the unrelated changes, only keep the PVS ones.
* CP-16922: Merge latest XAPI changes, notably changes to Pvs_site.create
* CP-16922: Change tab show/hide logic for PVS tab, show it even if there are no PVS sites.
* CP-16922: Implement GUI for enabling PVS read caching
Design changes - remove the storage repo column and replace it with status, which is populated with a friendly version of the pvs_proxy_status enum. Also populate site list using site.name_label
Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
* CP-16922: Implement GUI for enabling PVS read caching
Adjusting the CanExecute of Enable PVS read-caching command to require at least one PVS site to be created. Since the PVS tab can show up without any sites, we need this because we can't create a proxy without a site.
* CP-16922: Code review changes.
Tidied up messages, and ensured actions run async properly, and without exiting before their task.
* CP-16922: Code review changes.
Update dialog resx, wider combobox on dialog, update action descriptions before setting RelatedTask, add friendly message body for PVS error notifications.
2016-09-22 16:08:15 +02:00
|
|
|
this.disablePVSReadcachingToolStripMenuItem.Name = "disablePVSReadcachingToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.disablePVSReadcachingToolStripMenuItem, "disablePVSReadcachingToolStripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripMenuItem12
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem12.Name = "toolStripMenuItem12";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem12, "toolStripMenuItem12");
|
|
|
|
//
|
|
|
|
// installToolsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.installToolsToolStripMenuItem.Command = new XenAdmin.Commands.InstallToolsCommand();
|
|
|
|
this.installToolsToolStripMenuItem.Name = "installToolsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.installToolsToolStripMenuItem, "installToolsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// sendCtrlAltDelToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.sendCtrlAltDelToolStripMenuItem.Name = "sendCtrlAltDelToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.sendCtrlAltDelToolStripMenuItem, "sendCtrlAltDelToolStripMenuItem");
|
|
|
|
this.sendCtrlAltDelToolStripMenuItem.Click += new System.EventHandler(this.sendCtrlAltDelToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripSeparator5
|
|
|
|
//
|
|
|
|
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5");
|
|
|
|
//
|
|
|
|
// uninstallToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.uninstallToolStripMenuItem.Command = new XenAdmin.Commands.DeleteVMCommand();
|
|
|
|
this.uninstallToolStripMenuItem.Name = "uninstallToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.uninstallToolStripMenuItem, "uninstallToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator10
|
|
|
|
//
|
|
|
|
this.toolStripSeparator10.Name = "toolStripSeparator10";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator10, "toolStripSeparator10");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem4
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem4.Name = "pluginItemsPlaceHolderToolStripMenuItem4";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem4, "pluginItemsPlaceHolderToolStripMenuItem4");
|
|
|
|
//
|
|
|
|
// VMPropertiesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.VMPropertiesToolStripMenuItem.Command = new XenAdmin.Commands.VMPropertiesCommand();
|
|
|
|
this.VMPropertiesToolStripMenuItem.Image = global::XenAdmin.Properties.Resources.edit_16;
|
|
|
|
this.VMPropertiesToolStripMenuItem.Name = "VMPropertiesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.VMPropertiesToolStripMenuItem, "VMPropertiesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripMenuItem8
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem8.Name = "toolStripMenuItem8";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem8, "toolStripMenuItem8");
|
|
|
|
//
|
|
|
|
// StorageToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.StorageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.AddStorageToolStripMenuItem,
|
|
|
|
this.toolStripSeparator22,
|
|
|
|
this.RepairStorageToolStripMenuItem,
|
|
|
|
this.DefaultSRToolStripMenuItem,
|
|
|
|
this.toolStripSeparator2,
|
|
|
|
this.virtualDisksToolStripMenuItem,
|
2014-07-04 14:36:41 +02:00
|
|
|
this.reclaimFreedSpacetripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator19,
|
|
|
|
this.DetachStorageToolStripMenuItem,
|
|
|
|
this.ReattachStorageRepositoryToolStripMenuItem,
|
|
|
|
this.ForgetStorageRepositoryToolStripMenuItem,
|
|
|
|
this.DestroyStorageRepositoryToolStripMenuItem,
|
|
|
|
this.toolStripSeparator18,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem5,
|
|
|
|
this.SRPropertiesToolStripMenuItem});
|
|
|
|
this.StorageToolStripMenuItem.Name = "StorageToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.StorageToolStripMenuItem, "StorageToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// AddStorageToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.AddStorageToolStripMenuItem.Command = new XenAdmin.Commands.NewSRCommand();
|
|
|
|
this.AddStorageToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._000_NewStorage_h32bit_16;
|
|
|
|
this.AddStorageToolStripMenuItem.Name = "AddStorageToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.AddStorageToolStripMenuItem, "AddStorageToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator22
|
|
|
|
//
|
|
|
|
this.toolStripSeparator22.Name = "toolStripSeparator22";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator22, "toolStripSeparator22");
|
|
|
|
//
|
|
|
|
// RepairStorageToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.RepairStorageToolStripMenuItem.Command = new XenAdmin.Commands.RepairSRCommand();
|
|
|
|
this.RepairStorageToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._000_StorageBroken_h32bit_16;
|
|
|
|
this.RepairStorageToolStripMenuItem.Name = "RepairStorageToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.RepairStorageToolStripMenuItem, "RepairStorageToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// DefaultSRToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.DefaultSRToolStripMenuItem.Command = new XenAdmin.Commands.SetAsDefaultSRCommand();
|
|
|
|
this.DefaultSRToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._000_StorageDefault_h32bit_16;
|
|
|
|
this.DefaultSRToolStripMenuItem.Name = "DefaultSRToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.DefaultSRToolStripMenuItem, "DefaultSRToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator2
|
|
|
|
//
|
|
|
|
this.toolStripSeparator2.Name = "toolStripSeparator2";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
|
|
|
|
//
|
|
|
|
// virtualDisksToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.virtualDisksToolStripMenuItem.Command = new XenAdmin.Commands.VirtualDiskCommand();
|
|
|
|
this.virtualDisksToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.addVirtualDiskToolStripMenuItem,
|
|
|
|
this.attachVirtualDiskToolStripMenuItem});
|
|
|
|
this.virtualDisksToolStripMenuItem.Name = "virtualDisksToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.virtualDisksToolStripMenuItem, "virtualDisksToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// addVirtualDiskToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.addVirtualDiskToolStripMenuItem.Command = new XenAdmin.Commands.AddVirtualDiskCommand();
|
|
|
|
this.addVirtualDiskToolStripMenuItem.Name = "addVirtualDiskToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.addVirtualDiskToolStripMenuItem, "addVirtualDiskToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// attachVirtualDiskToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.attachVirtualDiskToolStripMenuItem.Command = new XenAdmin.Commands.AttachVirtualDiskCommand();
|
|
|
|
this.attachVirtualDiskToolStripMenuItem.Name = "attachVirtualDiskToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.attachVirtualDiskToolStripMenuItem, "attachVirtualDiskToolStripMenuItem");
|
|
|
|
//
|
2014-07-04 14:36:41 +02:00
|
|
|
// reclaimFreedSpacetripMenuItem
|
|
|
|
//
|
|
|
|
this.reclaimFreedSpacetripMenuItem.Command = new XenAdmin.Commands.TrimSRCommand();
|
|
|
|
this.reclaimFreedSpacetripMenuItem.Name = "reclaimFreedSpacetripMenuItem";
|
|
|
|
resources.ApplyResources(this.reclaimFreedSpacetripMenuItem, "reclaimFreedSpacetripMenuItem");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator19
|
|
|
|
//
|
|
|
|
this.toolStripSeparator19.Name = "toolStripSeparator19";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator19, "toolStripSeparator19");
|
|
|
|
//
|
|
|
|
// DetachStorageToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.DetachStorageToolStripMenuItem.Command = new XenAdmin.Commands.DetachSRCommand();
|
|
|
|
this.DetachStorageToolStripMenuItem.Name = "DetachStorageToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.DetachStorageToolStripMenuItem, "DetachStorageToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// ReattachStorageRepositoryToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ReattachStorageRepositoryToolStripMenuItem.Command = new XenAdmin.Commands.ReattachSRCommand();
|
|
|
|
this.ReattachStorageRepositoryToolStripMenuItem.Name = "ReattachStorageRepositoryToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.ReattachStorageRepositoryToolStripMenuItem, "ReattachStorageRepositoryToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// ForgetStorageRepositoryToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.ForgetStorageRepositoryToolStripMenuItem.Command = new XenAdmin.Commands.ForgetSRCommand();
|
|
|
|
this.ForgetStorageRepositoryToolStripMenuItem.Name = "ForgetStorageRepositoryToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.ForgetStorageRepositoryToolStripMenuItem, "ForgetStorageRepositoryToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// DestroyStorageRepositoryToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.DestroyStorageRepositoryToolStripMenuItem.Command = new XenAdmin.Commands.DestroySRCommand();
|
|
|
|
this.DestroyStorageRepositoryToolStripMenuItem.Name = "DestroyStorageRepositoryToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.DestroyStorageRepositoryToolStripMenuItem, "DestroyStorageRepositoryToolStripMenuItem");
|
2015-08-26 18:54:03 +02:00
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator18
|
|
|
|
//
|
|
|
|
this.toolStripSeparator18.Name = "toolStripSeparator18";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator18, "toolStripSeparator18");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem5
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem5.Name = "pluginItemsPlaceHolderToolStripMenuItem5";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem5, "pluginItemsPlaceHolderToolStripMenuItem5");
|
|
|
|
//
|
|
|
|
// SRPropertiesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.SRPropertiesToolStripMenuItem.Command = new XenAdmin.Commands.SRPropertiesCommand();
|
|
|
|
this.SRPropertiesToolStripMenuItem.Image = global::XenAdmin.Properties.Resources.edit_16;
|
|
|
|
this.SRPropertiesToolStripMenuItem.Name = "SRPropertiesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.SRPropertiesToolStripMenuItem, "SRPropertiesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// templatesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.templatesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem,
|
|
|
|
this.toolStripSeparator29,
|
|
|
|
this.exportTemplateToolStripMenuItem,
|
|
|
|
this.duplicateTemplateToolStripMenuItem,
|
|
|
|
this.toolStripSeparator16,
|
|
|
|
this.uninstallTemplateToolStripMenuItem,
|
|
|
|
this.toolStripSeparator28,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem6,
|
|
|
|
this.templatePropertiesToolStripMenuItem});
|
|
|
|
this.templatesToolStripMenuItem.Name = "templatesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.templatesToolStripMenuItem, "templatesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// CreateVmFromTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem.Command = new XenAdmin.Commands.CreateVMFromTemplateCommand();
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.newVMFromTemplateToolStripMenuItem,
|
|
|
|
this.InstantVmToolStripMenuItem});
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._001_CreateVM_h32bit_16;
|
|
|
|
this.CreateVmFromTemplateToolStripMenuItem.Name = "CreateVmFromTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.CreateVmFromTemplateToolStripMenuItem, "CreateVmFromTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// newVMFromTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.newVMFromTemplateToolStripMenuItem.Command = new XenAdmin.Commands.NewVMFromTemplateCommand();
|
|
|
|
this.newVMFromTemplateToolStripMenuItem.Image = global::XenAdmin.Properties.Resources._001_CreateVM_h32bit_16;
|
|
|
|
this.newVMFromTemplateToolStripMenuItem.Name = "newVMFromTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.newVMFromTemplateToolStripMenuItem, "newVMFromTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// InstantVmToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.InstantVmToolStripMenuItem.Command = new XenAdmin.Commands.InstantVMFromTemplateCommand();
|
|
|
|
this.InstantVmToolStripMenuItem.Name = "InstantVmToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.InstantVmToolStripMenuItem, "InstantVmToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator29
|
|
|
|
//
|
|
|
|
this.toolStripSeparator29.Name = "toolStripSeparator29";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator29, "toolStripSeparator29");
|
|
|
|
//
|
|
|
|
// exportTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.exportTemplateToolStripMenuItem.Command = new XenAdmin.Commands.ExportTemplateCommand();
|
|
|
|
this.exportTemplateToolStripMenuItem.Name = "exportTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.exportTemplateToolStripMenuItem, "exportTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// duplicateTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.duplicateTemplateToolStripMenuItem.Command = new XenAdmin.Commands.CopyTemplateCommand();
|
|
|
|
this.duplicateTemplateToolStripMenuItem.Name = "duplicateTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.duplicateTemplateToolStripMenuItem, "duplicateTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator16
|
|
|
|
//
|
|
|
|
this.toolStripSeparator16.Name = "toolStripSeparator16";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator16, "toolStripSeparator16");
|
|
|
|
//
|
|
|
|
// uninstallTemplateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.uninstallTemplateToolStripMenuItem.Command = new XenAdmin.Commands.DeleteTemplateCommand();
|
|
|
|
this.uninstallTemplateToolStripMenuItem.Name = "uninstallTemplateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.uninstallTemplateToolStripMenuItem, "uninstallTemplateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator28
|
|
|
|
//
|
|
|
|
this.toolStripSeparator28.Name = "toolStripSeparator28";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator28, "toolStripSeparator28");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem6
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem6.Name = "pluginItemsPlaceHolderToolStripMenuItem6";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem6, "pluginItemsPlaceHolderToolStripMenuItem6");
|
|
|
|
//
|
|
|
|
// templatePropertiesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.templatePropertiesToolStripMenuItem.Command = new XenAdmin.Commands.TemplatePropertiesCommand();
|
|
|
|
this.templatePropertiesToolStripMenuItem.Image = global::XenAdmin.Properties.Resources.edit_16;
|
|
|
|
this.templatePropertiesToolStripMenuItem.Name = "templatePropertiesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.templatePropertiesToolStripMenuItem, "templatePropertiesToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.bugToolToolStripMenuItem,
|
2015-05-18 16:28:37 +02:00
|
|
|
this.healthCheckToolStripMenuItem1,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator14,
|
|
|
|
this.LicenseManagerMenuItem,
|
|
|
|
this.toolStripSeparator13,
|
|
|
|
this.installNewUpdateToolStripMenuItem,
|
|
|
|
this.rollingUpgradeToolStripMenuItem,
|
|
|
|
this.toolStripSeparator6,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem7,
|
|
|
|
this.preferencesToolStripMenuItem});
|
|
|
|
this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.toolsToolStripMenuItem, "toolsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// bugToolToolStripMenuItem
|
|
|
|
//
|
2013-08-21 18:13:23 +02:00
|
|
|
this.bugToolToolStripMenuItem.Command = new XenAdmin.Commands.BugToolCommand();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.bugToolToolStripMenuItem.Name = "bugToolToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.bugToolToolStripMenuItem, "bugToolToolStripMenuItem");
|
|
|
|
//
|
2015-11-30 12:53:54 +01:00
|
|
|
// healthCheckToolStripMenuItem1
|
|
|
|
//
|
|
|
|
this.healthCheckToolStripMenuItem1.Command = new XenAdmin.Commands.HealthCheckCommand();
|
|
|
|
this.healthCheckToolStripMenuItem1.Name = "healthCheckToolStripMenuItem1";
|
|
|
|
resources.ApplyResources(this.healthCheckToolStripMenuItem1, "healthCheckToolStripMenuItem1");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator14
|
|
|
|
//
|
|
|
|
this.toolStripSeparator14.Name = "toolStripSeparator14";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator14, "toolStripSeparator14");
|
|
|
|
//
|
|
|
|
// LicenseManagerMenuItem
|
|
|
|
//
|
|
|
|
this.LicenseManagerMenuItem.Name = "LicenseManagerMenuItem";
|
|
|
|
resources.ApplyResources(this.LicenseManagerMenuItem, "LicenseManagerMenuItem");
|
|
|
|
this.LicenseManagerMenuItem.Click += new System.EventHandler(this.LicenseManagerMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripSeparator13
|
|
|
|
//
|
|
|
|
this.toolStripSeparator13.Name = "toolStripSeparator13";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator13, "toolStripSeparator13");
|
|
|
|
//
|
|
|
|
// installNewUpdateToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.installNewUpdateToolStripMenuItem.Command = new XenAdmin.Commands.InstallNewUpdateCommand();
|
|
|
|
this.installNewUpdateToolStripMenuItem.Name = "installNewUpdateToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.installNewUpdateToolStripMenuItem, "installNewUpdateToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// rollingUpgradeToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.rollingUpgradeToolStripMenuItem.Command = new XenAdmin.Commands.RollingUpgradeCommand();
|
|
|
|
this.rollingUpgradeToolStripMenuItem.Name = "rollingUpgradeToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.rollingUpgradeToolStripMenuItem, "rollingUpgradeToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// toolStripSeparator6
|
|
|
|
//
|
|
|
|
this.toolStripSeparator6.Name = "toolStripSeparator6";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem7
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem7.Name = "pluginItemsPlaceHolderToolStripMenuItem7";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem7, "pluginItemsPlaceHolderToolStripMenuItem7");
|
|
|
|
//
|
|
|
|
// preferencesToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.preferencesToolStripMenuItem.Name = "preferencesToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.preferencesToolStripMenuItem, "preferencesToolStripMenuItem");
|
|
|
|
this.preferencesToolStripMenuItem.Click += new System.EventHandler(this.preferencesToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// windowToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.windowToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2013-07-02 15:51:03 +02:00
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem9});
|
2013-06-24 13:41:48 +02:00
|
|
|
this.windowToolStripMenuItem.Name = "windowToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.windowToolStripMenuItem, "windowToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem9
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem9.Name = "pluginItemsPlaceHolderToolStripMenuItem9";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem9, "pluginItemsPlaceHolderToolStripMenuItem9");
|
|
|
|
//
|
|
|
|
// helpToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.helpTopicsToolStripMenuItem,
|
|
|
|
this.helpContextMenuItem,
|
|
|
|
this.toolStripMenuItem15,
|
|
|
|
this.viewApplicationLogToolStripMenuItem,
|
|
|
|
this.toolStripMenuItem17,
|
|
|
|
this.xenSourceOnTheWebToolStripMenuItem,
|
2014-04-14 19:04:03 +02:00
|
|
|
this.xenCenterPluginsOnlineToolStripMenuItem,
|
2013-06-24 13:41:48 +02:00
|
|
|
this.toolStripSeparator7,
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem8,
|
2014-04-14 19:04:03 +02:00
|
|
|
this.aboutXenSourceAdminToolStripMenuItem});
|
2013-06-24 13:41:48 +02:00
|
|
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// helpTopicsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.helpTopicsToolStripMenuItem.Name = "helpTopicsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.helpTopicsToolStripMenuItem, "helpTopicsToolStripMenuItem");
|
|
|
|
this.helpTopicsToolStripMenuItem.Click += new System.EventHandler(this.helpTopicsToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// helpContextMenuItem
|
|
|
|
//
|
|
|
|
this.helpContextMenuItem.Image = global::XenAdmin.Properties.Resources._000_HelpIM_h32bit_16;
|
|
|
|
this.helpContextMenuItem.Name = "helpContextMenuItem";
|
|
|
|
resources.ApplyResources(this.helpContextMenuItem, "helpContextMenuItem");
|
|
|
|
this.helpContextMenuItem.Click += new System.EventHandler(this.helpContextMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripMenuItem15
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem15.Name = "toolStripMenuItem15";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem15, "toolStripMenuItem15");
|
|
|
|
//
|
|
|
|
// viewApplicationLogToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.viewApplicationLogToolStripMenuItem.Name = "viewApplicationLogToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.viewApplicationLogToolStripMenuItem, "viewApplicationLogToolStripMenuItem");
|
|
|
|
this.viewApplicationLogToolStripMenuItem.Click += new System.EventHandler(this.viewApplicationLogToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// toolStripMenuItem17
|
|
|
|
//
|
|
|
|
this.toolStripMenuItem17.Name = "toolStripMenuItem17";
|
|
|
|
resources.ApplyResources(this.toolStripMenuItem17, "toolStripMenuItem17");
|
|
|
|
//
|
|
|
|
// xenSourceOnTheWebToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.xenSourceOnTheWebToolStripMenuItem.Name = "xenSourceOnTheWebToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.xenSourceOnTheWebToolStripMenuItem, "xenSourceOnTheWebToolStripMenuItem");
|
|
|
|
this.xenSourceOnTheWebToolStripMenuItem.Click += new System.EventHandler(this.xenSourceOnTheWebToolStripMenuItem_Click);
|
|
|
|
//
|
2015-05-18 16:28:37 +02:00
|
|
|
// xenCenterPluginsOnlineToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.xenCenterPluginsOnlineToolStripMenuItem.Name = "xenCenterPluginsOnlineToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.xenCenterPluginsOnlineToolStripMenuItem, "xenCenterPluginsOnlineToolStripMenuItem");
|
|
|
|
this.xenCenterPluginsOnlineToolStripMenuItem.Click += new System.EventHandler(this.xenCenterPluginsOnTheWebToolStripMenuItem_Click);
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// toolStripSeparator7
|
|
|
|
//
|
|
|
|
this.toolStripSeparator7.Name = "toolStripSeparator7";
|
|
|
|
resources.ApplyResources(this.toolStripSeparator7, "toolStripSeparator7");
|
|
|
|
//
|
|
|
|
// pluginItemsPlaceHolderToolStripMenuItem8
|
|
|
|
//
|
|
|
|
this.pluginItemsPlaceHolderToolStripMenuItem8.Name = "pluginItemsPlaceHolderToolStripMenuItem8";
|
|
|
|
resources.ApplyResources(this.pluginItemsPlaceHolderToolStripMenuItem8, "pluginItemsPlaceHolderToolStripMenuItem8");
|
|
|
|
//
|
|
|
|
// aboutXenSourceAdminToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.aboutXenSourceAdminToolStripMenuItem.Name = "aboutXenSourceAdminToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.aboutXenSourceAdminToolStripMenuItem, "aboutXenSourceAdminToolStripMenuItem");
|
|
|
|
this.aboutXenSourceAdminToolStripMenuItem.Click += new System.EventHandler(this.aboutXenSourceAdminToolStripMenuItem_Click);
|
|
|
|
//
|
|
|
|
// MainMenuBar
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.MainMenuBar, "MainMenuBar");
|
|
|
|
this.MainMenuBar.ClickThrough = true;
|
|
|
|
this.MainMenuBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
this.fileToolStripMenuItem,
|
|
|
|
this.viewToolStripMenuItem,
|
|
|
|
this.poolToolStripMenuItem,
|
|
|
|
this.HostMenuItem,
|
|
|
|
this.VMToolStripMenuItem,
|
|
|
|
this.StorageToolStripMenuItem,
|
|
|
|
this.templatesToolStripMenuItem,
|
|
|
|
this.toolsToolStripMenuItem,
|
|
|
|
this.windowToolStripMenuItem,
|
|
|
|
this.helpToolStripMenuItem});
|
|
|
|
this.MainMenuBar.Name = "MainMenuBar";
|
|
|
|
this.MainMenuBar.MenuActivate += new System.EventHandler(this.MainMenuBar_MenuActivate);
|
|
|
|
this.MainMenuBar.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainMenuBar_MouseClick);
|
|
|
|
//
|
|
|
|
// securityGroupsToolStripMenuItem
|
|
|
|
//
|
|
|
|
this.securityGroupsToolStripMenuItem.Name = "securityGroupsToolStripMenuItem";
|
|
|
|
resources.ApplyResources(this.securityGroupsToolStripMenuItem, "securityGroupsToolStripMenuItem");
|
|
|
|
//
|
|
|
|
// MenuPanel
|
|
|
|
//
|
|
|
|
this.MenuPanel.Controls.Add(this.MainMenuBar);
|
|
|
|
resources.ApplyResources(this.MenuPanel, "MenuPanel");
|
|
|
|
this.MenuPanel.Name = "MenuPanel";
|
|
|
|
//
|
2013-11-12 13:44:19 +01:00
|
|
|
// StatusStrip
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.StatusStrip, "StatusStrip");
|
|
|
|
this.StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2020-03-24 03:07:15 +01:00
|
|
|
this.statusProgressBar,
|
2013-11-12 13:44:19 +01:00
|
|
|
this.statusLabel,
|
2020-03-24 03:07:15 +01:00
|
|
|
this.statusLabelAlerts,
|
|
|
|
this.statusLabelUpdates,
|
|
|
|
this.statusLabelErrors});
|
2013-11-12 13:44:19 +01:00
|
|
|
this.StatusStrip.Name = "StatusStrip";
|
2014-01-27 12:36:49 +01:00
|
|
|
this.StatusStrip.ShowItemToolTips = true;
|
2013-11-12 13:44:19 +01:00
|
|
|
//
|
|
|
|
// statusProgressBar
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.statusProgressBar, "statusProgressBar");
|
|
|
|
this.statusProgressBar.Margin = new System.Windows.Forms.Padding(5);
|
|
|
|
this.statusProgressBar.Name = "statusProgressBar";
|
|
|
|
this.statusProgressBar.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
//
|
2020-07-08 13:59:29 +02:00
|
|
|
// statusLabel
|
2019-08-08 02:15:10 +02:00
|
|
|
//
|
2020-07-08 13:59:29 +02:00
|
|
|
this.statusLabel.AutoToolTip = true;
|
|
|
|
resources.ApplyResources(this.statusLabel, "statusLabel");
|
|
|
|
this.statusLabel.Name = "statusLabel";
|
|
|
|
this.statusLabel.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
|
|
|
|
this.statusLabel.Spring = true;
|
2019-08-22 11:47:43 +02:00
|
|
|
//
|
2020-03-24 03:07:15 +01:00
|
|
|
// statusLabelAlerts
|
|
|
|
//
|
|
|
|
this.statusLabelAlerts.ActiveLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelAlerts.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelAlerts.IsLink = true;
|
|
|
|
this.statusLabelAlerts.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
|
|
|
|
this.statusLabelAlerts.LinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelAlerts.Name = "statusLabelAlerts";
|
|
|
|
resources.ApplyResources(this.statusLabelAlerts, "statusLabelAlerts");
|
|
|
|
this.statusLabelAlerts.VisitedLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelAlerts.Click += new System.EventHandler(this.statusLabelAlerts_Click);
|
|
|
|
//
|
|
|
|
// statusLabelUpdates
|
|
|
|
//
|
|
|
|
this.statusLabelUpdates.ActiveLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelUpdates.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelUpdates.IsLink = true;
|
|
|
|
this.statusLabelUpdates.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
|
|
|
|
this.statusLabelUpdates.LinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelUpdates.Name = "statusLabelUpdates";
|
|
|
|
resources.ApplyResources(this.statusLabelUpdates, "statusLabelUpdates");
|
|
|
|
this.statusLabelUpdates.VisitedLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelUpdates.Click += new System.EventHandler(this.statusLabelUpdates_Click);
|
|
|
|
//
|
|
|
|
// statusLabelErrors
|
|
|
|
//
|
|
|
|
this.statusLabelErrors.ActiveLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelErrors.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelErrors.IsLink = true;
|
|
|
|
this.statusLabelErrors.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
|
|
|
|
this.statusLabelErrors.LinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelErrors.Name = "statusLabelErrors";
|
|
|
|
resources.ApplyResources(this.statusLabelErrors, "statusLabelErrors");
|
|
|
|
this.statusLabelErrors.VisitedLinkColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
|
|
this.statusLabelErrors.Click += new System.EventHandler(this.statusLabelErrors_Click);
|
|
|
|
//
|
2020-07-08 13:59:29 +02:00
|
|
|
// toolStripMenuItemRotateSecret
|
|
|
|
//
|
|
|
|
this.toolStripMenuItemRotateSecret.Name = "toolStripMenuItemRotateSecret";
|
|
|
|
this.toolStripMenuItemRotateSecret.Command = new XenAdmin.Commands.RotatePoolSecretCommand();
|
|
|
|
resources.ApplyResources(this.toolStripMenuItemRotateSecret, "toolStripMenuItemRotateSecret");
|
|
|
|
//
|
2020-09-14 18:03:26 +02:00
|
|
|
// toolStripMenuItemHaConfigure
|
|
|
|
//
|
|
|
|
this.toolStripMenuItemHaConfigure.Name = "toolStripMenuItemHaConfigure";
|
|
|
|
this.toolStripMenuItemHaConfigure.Command = new XenAdmin.Commands.HAConfigureCommand();
|
|
|
|
resources.ApplyResources(this.toolStripMenuItemHaConfigure, "toolStripMenuItemHaConfigure");
|
|
|
|
//
|
|
|
|
// toolStripMenuItemHaDisable
|
|
|
|
//
|
|
|
|
this.toolStripMenuItemHaDisable.Name = "toolStripMenuItemHaDisable";
|
|
|
|
this.toolStripMenuItemHaDisable.Command = new XenAdmin.Commands.HADisableCommand();
|
|
|
|
resources.ApplyResources(this.toolStripMenuItemHaDisable, "toolStripMenuItemHaDisable");
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// MainWindow
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this, "$this");
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
|
|
this.Controls.Add(this.splitContainer1);
|
|
|
|
this.Controls.Add(this.ToolStrip);
|
|
|
|
this.Controls.Add(this.MenuPanel);
|
2013-11-12 13:44:19 +01:00
|
|
|
this.Controls.Add(this.StatusStrip);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.DoubleBuffered = true;
|
|
|
|
this.KeyPreview = true;
|
|
|
|
this.MainMenuStrip = this.MainMenuBar;
|
|
|
|
this.Name = "MainWindow";
|
|
|
|
this.Load += new System.EventHandler(this.MainWindow_Load);
|
|
|
|
this.Shown += new System.EventHandler(this.MainWindow_Shown);
|
2017-02-27 19:00:46 +01:00
|
|
|
this.ResizeEnd += new System.EventHandler(this.MainWindow_ResizeEnd);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.MainWindow_HelpRequested);
|
|
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainWindow_KeyDown);
|
2014-04-14 19:04:03 +02:00
|
|
|
this.Resize += new System.EventHandler(this.MainWindow_Resize);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
2014-04-14 19:04:03 +02:00
|
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.splitContainer1.ResumeLayout(false);
|
2013-08-30 14:35:32 +02:00
|
|
|
this.TheTabControl.ResumeLayout(false);
|
|
|
|
this.TabPageSnapshots.ResumeLayout(false);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.TitleBackPanel.ResumeLayout(false);
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.TitleIcon)).EndInit();
|
|
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
|
|
this.toolTipContainer1.ResumeLayout(false);
|
|
|
|
this.toolTipContainer1.PerformLayout();
|
|
|
|
this.ToolStrip.ResumeLayout(false);
|
|
|
|
this.ToolStrip.PerformLayout();
|
|
|
|
this.ToolBarContextMenu.ResumeLayout(false);
|
|
|
|
this.MainMenuBar.ResumeLayout(false);
|
|
|
|
this.MainMenuBar.PerformLayout();
|
|
|
|
this.MenuPanel.ResumeLayout(false);
|
2013-11-12 13:44:19 +01:00
|
|
|
this.StatusStrip.ResumeLayout(false);
|
|
|
|
this.StatusStrip.PerformLayout();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
|
|
private XenAdmin.Controls.ToolStripEx ToolStrip;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripButton NewVmToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton AddServerToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton RebootToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton SuspendToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton ForceRebootToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton ForceShutdownToolbarButton;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolTip statusToolTip;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripButton AddPoolToolbarButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton newStorageToolbarButton;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
|
|
|
|
private System.Windows.Forms.Label TitleLabel;
|
|
|
|
private System.Windows.Forms.PictureBox TitleIcon;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
|
|
|
|
internal System.Windows.Forms.ToolStripSplitButton backButton;
|
|
|
|
internal System.Windows.Forms.ToolStripSplitButton forwardButton;
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
|
|
private System.Windows.Forms.ContextMenuStrip ToolBarContextMenu;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem ShowToolbarMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem FileImportVMToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem importSearchToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator21;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
2013-06-28 18:31:21 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem poolToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem AddPoolToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem PoolPropertiesToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem highAvailabilityToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem wlbReportsToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem wlbDisconnectToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.AddHostToSelectedPoolToolStripMenuItem addServerToolStripMenuItem;
|
2019-08-08 02:15:10 +02:00
|
|
|
private XenAdmin.Commands.PoolRemoveServerToolStripMenuItem removeServerToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem deleteToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem disconnectPoolToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem exportResourceReportPoolToolStripMenuItem;
|
2013-06-28 18:31:21 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem HostMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem11;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ServerPropertiesToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem RebootHostToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ShutdownHostToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem AddHostToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem removeHostToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.AddSelectedHostToPoolToolStripMenuItem addServerToPoolMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem RemoveCrashdumpsToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem maintenanceModeToolStripMenuItem1;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem backupToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem restoreFromBackupToolStripMenuItem;
|
2013-06-28 18:31:21 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem VMToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem VMPropertiesToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator20;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem snapshotToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem9;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem copyVMtoSharedStorageMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem exportToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem convertToTemplateToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem12;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem installToolsToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem uninstallToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
internal System.Windows.Forms.ToolStripMenuItem StorageToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem AddStorageToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator18;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem SRPropertiesToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator22;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem RepairStorageToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem DefaultSRToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem DetachStorageToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ReattachStorageRepositoryToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ForgetStorageRepositoryToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem DestroyStorageRepositoryToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem templatesToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem exportTemplateToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem duplicateTemplateToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem uninstallTemplateToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem bugToolToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem LicenseManagerMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem installNewUpdateToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem preferencesToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem windowToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem helpTopicsToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem helpContextMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem15;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem viewApplicationLogToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem17;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem xenSourceOnTheWebToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem aboutXenSourceAdminToolStripMenuItem;
|
|
|
|
private XenAdmin.Controls.MenuStripEx MainMenuBar;
|
|
|
|
private System.Windows.Forms.Panel MenuPanel;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator24;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem toolbarToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem ShowHiddenObjectsToolStripMenuItem;
|
|
|
|
internal System.Windows.Forms.TabControl TheTabControl;
|
|
|
|
private System.Windows.Forms.TabPage TabPageHome;
|
|
|
|
internal System.Windows.Forms.TabPage TabPageSearch;
|
|
|
|
internal System.Windows.Forms.TabPage TabPageGeneral;
|
|
|
|
private System.Windows.Forms.TabPage TabPageBallooning;
|
|
|
|
internal System.Windows.Forms.TabPage TabPageConsole;
|
|
|
|
private System.Windows.Forms.TabPage TabPageStorage;
|
|
|
|
private System.Windows.Forms.TabPage TabPagePhysicalStorage;
|
|
|
|
private System.Windows.Forms.TabPage TabPageSR;
|
|
|
|
private System.Windows.Forms.TabPage TabPageNetwork;
|
|
|
|
private System.Windows.Forms.TabPage TabPageNICs;
|
|
|
|
private System.Windows.Forms.TabPage TabPagePeformance;
|
|
|
|
private System.Windows.Forms.TabPage TabPageHA;
|
|
|
|
private System.Windows.Forms.TabPage TabPageHAUpsell;
|
|
|
|
internal System.Windows.Forms.TabPage TabPageWLB;
|
|
|
|
private System.Windows.Forms.TabPage TabPageWLBUpsell;
|
2015-05-18 16:28:37 +02:00
|
|
|
private System.Windows.Forms.TabPage TabPageSnapshots;
|
|
|
|
private System.Windows.Forms.TabPage TabPageDockerProcess;
|
|
|
|
internal System.Windows.Forms.TabPage TabPageDockerDetails;
|
2013-06-24 13:41:48 +02:00
|
|
|
private XenAdmin.TabPages.SnapshotsPage snapshotPage;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem connectDisconnectToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem connectAllToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem DisconnectToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem disconnectAllToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem sendCtrlAltDelToolStripMenuItem;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem virtualDisksToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem addVirtualDiskToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem attachVirtualDiskToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem NewVmToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator26;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator27;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator23;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator25;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator28;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator16;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem templatePropertiesToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator29;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.VMLifeCycleToolStripMenuItem startShutdownToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem8;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ReconnectToolStripMenuItem1;
|
2013-06-24 13:41:48 +02:00
|
|
|
private XenAdmin.Controls.ToolTipContainer toolTipContainer1;
|
|
|
|
private XenAdmin.Controls.LoggedInLabel loggedInLabel1;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem reconnectAsToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem poolReconnectAsToolStripMenuItem;
|
2013-06-24 13:41:48 +02:00
|
|
|
internal System.Windows.Forms.TabPage TabPageAD;
|
2013-11-14 12:06:50 +01:00
|
|
|
private System.Windows.Forms.TabPage TabPageGPU;
|
2018-09-28 18:58:49 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem powerOnToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton shutDownToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton startVMToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton powerOnHostToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton resumeToolStripButton;
|
|
|
|
private XenAdmin.Commands.MigrateVMToolStripMenuItem relocateToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.StartVMOnHostToolStripMenuItem startOnHostToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.ResumeVMOnHostToolStripMenuItem resumeOnToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem1;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem2;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem3;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem4;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem5;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem6;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem7;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem9;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem pluginItemsPlaceHolderToolStripMenuItem8;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem xenCenterPluginsOnlineToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem MoveVMToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem rollingUpgradeToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem changePoolPasswordToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator30;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem virtualAppliancesToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.AssignGroupToolStripMenuItemVM_appliance assignToVirtualApplianceToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem disasterRecoveryToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem DrWizardToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem drConfigureToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem securityGroupsToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem HostPasswordToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem ChangeRootPasswordToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem forgetSavedPasswordToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem CreateVmFromTemplateToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem newVMFromTemplateToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem InstantVmToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem importSettingsToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem exportSettingsToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator31;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem destroyServerToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem restartToolstackToolStripMenuItem;
|
2013-08-26 12:42:32 +02:00
|
|
|
private XenAdmin.Controls.MainWindowControls.NavigationPane navigationPane;
|
2013-08-30 14:35:32 +02:00
|
|
|
private XenAdmin.TabPages.AlertSummaryPage alertPage;
|
2013-08-30 16:19:59 +02:00
|
|
|
private XenAdmin.TabPages.ManageUpdatesPage updatesPage;
|
2013-09-02 15:45:42 +02:00
|
|
|
private XenAdmin.TabPages.HistoryPage eventsPage;
|
2018-09-28 18:58:49 +02:00
|
|
|
private System.Windows.Forms.ToolStripMenuItem customTemplatesToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem templatesToolStripMenuItem1;
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem localStorageToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.StatusStrip StatusStrip;
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel statusLabel;
|
|
|
|
private System.Windows.Forms.ToolStripProgressBar statusProgressBar;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem reclaimFreedSpacetripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton startContainerToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton stopContainerToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton pauseContainerToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton resumeContainerToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripButton restartContainerToolStripButton;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem healthCheckToolStripMenuItem1;
|
|
|
|
private XenAdmin.Commands.AssignGroupToolStripMenuItemVMSS assignSnapshotScheduleToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem VMSnapshotScheduleToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.TabPage TabPageADUpsell;
|
|
|
|
private System.Windows.Forms.TabPage TabPageCvmConsole;
|
|
|
|
private System.Windows.Forms.TabPage TabPagePvs;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem controlDomainMemoryToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem enablePVSReadcachingToolStripMenuItem;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem disablePVSReadcachingToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.TabPage TabPageUSB;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem disableCbtToolStripMenuItem;
|
|
|
|
private System.Windows.Forms.Label LicenseStatusTitleLabel;
|
2019-04-02 15:12:25 +02:00
|
|
|
private Controls.GradientPanel.VerticalGradientPanel TitleBackPanel;
|
2019-08-08 02:15:10 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem menuItemRemoveFromPool;
|
2019-08-22 11:47:43 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem conversionToolStripMenuItem;
|
2020-03-25 00:28:44 +01:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem toolStripMenuItemInstallCertificate;
|
2020-03-24 03:07:15 +01:00
|
|
|
private System.Windows.Forms.ToolStripStatusLabel statusLabelAlerts;
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel statusLabelUpdates;
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel statusLabelErrors;
|
2020-07-08 13:59:29 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem toolStripMenuItemRotateSecret;
|
2020-09-14 18:03:26 +02:00
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem toolStripMenuItemHaConfigure;
|
|
|
|
private XenAdmin.Commands.CommandToolStripMenuItem toolStripMenuItemHaDisable;
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|