mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 15:29:26 +01:00
CP-20425: Added test to ensure all Resource images have a static counterpart.
Also, stop boxing Bitmap into Image so as to avoid casting wherever it is called. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
parent
ea4175e75c
commit
d08f02cce2
@ -308,7 +308,7 @@ namespace XenAdmin.Dialogs
|
||||
return;
|
||||
}
|
||||
|
||||
statusLabel.Image = Images.StaticImages.ConversionManager;
|
||||
statusLabel.Image = Images.StaticImages.xcm;
|
||||
statusLabel.Text = Messages.CONVERSION_CONNECTING_VPX_SUCCESS;
|
||||
statusLinkLabel.Reset();
|
||||
|
||||
|
@ -177,6 +177,8 @@ namespace XenAdmin
|
||||
ImageList16.Images.Add("StoppedDC_16.png", Properties.Resources.StoppedDC_16);
|
||||
ImageList16.Images.Add("PausedDC_16.png", Properties.Resources.PausedDC_16);
|
||||
|
||||
ImageList16.Images.Add("usb_16.png", Properties.Resources.usb_16);
|
||||
|
||||
#region Status Icons
|
||||
ImageList16.Images.Add("000_Tick_h32bit_16", Properties.Resources._000_Tick_h32bit_16); //Ok
|
||||
ImageList16.Images.Add("000_Info3_h32bit_16.png", Properties.Resources._000_Info3_h32bit_16); //Info
|
||||
@ -592,338 +594,345 @@ namespace XenAdmin
|
||||
|
||||
public static class StaticImages
|
||||
{
|
||||
// the followings are generated from Resources using:
|
||||
// cat Resources.Designer.cs | grep 'internal static System.Drawing.Bitmap' | sed "s/ {//g" | awk -F"Bitmap " '{print"public static Image " $2 " = Properties.Resources." $2 ";"}'
|
||||
public static Image _000_Abort_h32bit_16 = Properties.Resources._000_Abort_h32bit_16;
|
||||
public static Image _000_AddApplicationServer_h32bit_16 = Properties.Resources._000_AddApplicationServer_h32bit_16;
|
||||
public static Image _000_AddApplicationServer_h32bit_24 = Properties.Resources._000_AddApplicationServer_h32bit_24;
|
||||
public static Image _000_AddIPAddress_h32bit_16 = Properties.Resources._000_AddIPAddress_h32bit_16;
|
||||
public static Image _000_AddSite_h32bit_16 = Properties.Resources._000_AddSite_h32bit_16;
|
||||
public static Image _000_Alert2_h32bit_16 = Properties.Resources._000_Alert2_h32bit_16;
|
||||
public static Image _000_BackupMetadata_h32bit_16 = Properties.Resources._000_BackupMetadata_h32bit_16;
|
||||
public static Image _000_BackupMetadata_h32bit_32 = Properties.Resources._000_BackupMetadata_h32bit_32;
|
||||
public static Image _000_ConfigureIPAddresses_h32bit_16 = Properties.Resources._000_ConfigureIPAddresses_h32bit_16;
|
||||
public static Image _000_CPU_h32bit_16 = Properties.Resources._000_CPU_h32bit_16;
|
||||
public static Image _000_CreateVirtualStorage_h32bit_32 = Properties.Resources._000_CreateVirtualStorage_h32bit_32;
|
||||
public static Image _000_CreateVM_h32bit_24 = Properties.Resources._000_CreateVM_h32bit_24;
|
||||
public static Image _000_CreateVM_h32bit_32 = Properties.Resources._000_CreateVM_h32bit_32;
|
||||
public static Image _000_defaultSpyglass_h32bit_16 = Properties.Resources._000_defaultSpyglass_h32bit_16;
|
||||
public static Image _000_DeleteAllMessages_h32bit_16 = Properties.Resources._000_DeleteAllMessages_h32bit_16;
|
||||
public static Image _000_DeleteMessage_h32bit_16 = Properties.Resources._000_DeleteMessage_h32bit_16;
|
||||
public static Image _000_DeleteVirtualAppliance_h32bit_16 = Properties.Resources._000_DeleteVirtualAppliance_h32bit_16;
|
||||
public static Image _000_DisasterRecovery_h32bit_32 = Properties.Resources._000_DisasterRecovery_h32bit_32;
|
||||
public static Image _000_Email_h32bit_16 = Properties.Resources._000_Email_h32bit_16;
|
||||
public static Image _000_EnablePowerControl_h32bit_16 = Properties.Resources._000_EnablePowerControl_h32bit_16;
|
||||
public static Image _000_error_h32bit_16 = Properties.Resources._000_error_h32bit_16;
|
||||
public static Image _000_error_h32bit_32 = Properties.Resources._000_error_h32bit_32;
|
||||
public static Image _000_ExcludeHost_h32bit_16 = Properties.Resources._000_ExcludeHost_h32bit_16;
|
||||
public static Image _000_ExportMessages_h32bit_16 = Properties.Resources._000_ExportMessages_h32bit_16;
|
||||
public static Image _000_ExportVirtualAppliance_h32bit_16 = Properties.Resources._000_ExportVirtualAppliance_h32bit_16;
|
||||
public static Image _000_ExportVirtualAppliance_h32bit_32 = Properties.Resources._000_ExportVirtualAppliance_h32bit_32;
|
||||
public static Image _000_Failback_h32bit_32 = Properties.Resources._000_Failback_h32bit_32;
|
||||
public static Image _000_Failover_h32bit_32 = Properties.Resources._000_Failover_h32bit_32;
|
||||
public static Image _000_Fields_h32bit_16 = Properties.Resources._000_Fields_h32bit_16;
|
||||
public static Image _000_FilterDates_h32bit_16 = Properties.Resources._000_FilterDates_h32bit_16;
|
||||
public static Image _000_FilterServer_h32bit_16 = Properties.Resources._000_FilterServer_h32bit_16;
|
||||
public static Image _000_FilterSeverity_h32bit_16 = Properties.Resources._000_FilterSeverity_h32bit_16;
|
||||
public static Image _000_Folder_open_h32bit_16 = Properties.Resources._000_Folder_open_h32bit_16;
|
||||
public static Image _000_GetMemoryInfo_h32bit_16 = Properties.Resources._000_GetMemoryInfo_h32bit_16;
|
||||
public static Image _000_GetMemoryInfo_h32bit_32 = Properties.Resources._000_GetMemoryInfo_h32bit_32;
|
||||
public static Image _000_GetServerReport_h32bit_16 = Properties.Resources._000_GetServerReport_h32bit_16;
|
||||
public static Image _000_GetServerReport_h32bit_32 = Properties.Resources._000_GetServerReport_h32bit_32;
|
||||
public static Image _000_HAServer_h32bit_32 = Properties.Resources._000_HAServer_h32bit_32;
|
||||
public static Image _000_HelpIM_h32bit_16 = Properties.Resources._000_HelpIM_h32bit_16;
|
||||
public static Image _000_HelpIM_h32bit_32 = Properties.Resources._000_HelpIM_h32bit_32;
|
||||
public static Image _000_HighlightVM_h32bit_24 = Properties.Resources._000_HighlightVM_h32bit_24;
|
||||
public static Image _000_HighLightVM_h32bit_32 = Properties.Resources._000_HighLightVM_h32bit_32;
|
||||
public static Image _000_host_0_star = Properties.Resources._000_host_0_star;
|
||||
public static Image _000_host_1_star = Properties.Resources._000_host_1_star;
|
||||
public static Image _000_host_10_star = Properties.Resources._000_host_10_star;
|
||||
public static Image _000_host_2_star = Properties.Resources._000_host_2_star;
|
||||
public static Image _000_host_3_star = Properties.Resources._000_host_3_star;
|
||||
public static Image _000_host_4_star = Properties.Resources._000_host_4_star;
|
||||
public static Image _000_host_5_star = Properties.Resources._000_host_5_star;
|
||||
public static Image _000_host_6_star = Properties.Resources._000_host_6_star;
|
||||
public static Image _000_host_7_star = Properties.Resources._000_host_7_star;
|
||||
public static Image _000_host_8_star = Properties.Resources._000_host_8_star;
|
||||
public static Image _000_host_9_star = Properties.Resources._000_host_9_star;
|
||||
public static Image _000_HostUnpatched_h32bit_16 = Properties.Resources._000_HostUnpatched_h32bit_16;
|
||||
public static Image _000_ImportVirtualAppliance_h32bit_16 = Properties.Resources._000_ImportVirtualAppliance_h32bit_16;
|
||||
public static Image _000_ImportVirtualAppliance_h32bit_32 = Properties.Resources._000_ImportVirtualAppliance_h32bit_32;
|
||||
public static Image _000_ImportVM_h32bit_32 = Properties.Resources._000_ImportVM_h32bit_32;
|
||||
public static Image _000_Info3_h32bit_16 = Properties.Resources._000_Info3_h32bit_16;
|
||||
public static Image _000_ManagementInterface_h32bit_16 = Properties.Resources._000_ManagementInterface_h32bit_16;
|
||||
public static Image _000_MigrateStoppedVM_h32bit_16 = Properties.Resources._000_MigrateStoppedVM_h32bit_16;
|
||||
public static Image _000_MigrateSuspendedVM_h32bit_16 = Properties.Resources._000_MigrateSuspendedVM_h32bit_16;
|
||||
public static Image _000_MigrateVM_h32bit_16 = Properties.Resources._000_MigrateVM_h32bit_16;
|
||||
public static Image _000_MigrateVM_h32bit_32 = Properties.Resources._000_MigrateVM_h32bit_32;
|
||||
public static Image _000_Module_h32bit_16 = Properties.Resources._000_Module_h32bit_16;
|
||||
public static Image _000_Network_h32bit_16 = Properties.Resources._000_Network_h32bit_16;
|
||||
public static Image _000_NewNetwork_h32bit_32 = Properties.Resources._000_NewNetwork_h32bit_32;
|
||||
public static Image _000_NewStorage_h32bit_16 = Properties.Resources._000_NewStorage_h32bit_16;
|
||||
public static Image _000_NewStorage_h32bit_24 = Properties.Resources._000_NewStorage_h32bit_24;
|
||||
public static Image _000_NewStorage_h32bit_32 = Properties.Resources._000_NewStorage_h32bit_32;
|
||||
public static Image _000_NewVirtualAppliance_h32bit_16 = Properties.Resources._000_NewVirtualAppliance_h32bit_16;
|
||||
public static Image _000_NewVirtualAppliance_h32bit_32 = Properties.Resources._000_NewVirtualAppliance_h32bit_32;
|
||||
public static Image _000_Optimize_h32bit_16 = Properties.Resources._000_Optimize_h32bit_16;
|
||||
public static Image _000_Patch_h32bit_16 = Properties.Resources._000_Patch_h32bit_16;
|
||||
public static Image _000_Patch_h32bit_32 = Properties.Resources._000_Patch_h32bit_32;
|
||||
public static Image _000_paused_h32bit_16 = Properties.Resources._000_paused_h32bit_16;
|
||||
public static Image _000_Paused_h32bit_24 = Properties.Resources._000_Paused_h32bit_24;
|
||||
public static Image _000_Pool_h32bit_16 = Properties.Resources._000_Pool_h32bit_16;
|
||||
public static Image _000_Pool_h32bit_16_w_alert = Properties.Resources._000_Pool_h32bit_16_w_alert;
|
||||
public static Image _000_PoolConnected_h32bit_16 = Properties.Resources._000_PoolConnected_h32bit_16;
|
||||
public static Image _000_PoolNew_h32bit_16 = Properties.Resources._000_PoolNew_h32bit_16;
|
||||
public static Image _000_PoolNew_h32bit_24 = Properties.Resources._000_PoolNew_h32bit_24;
|
||||
public static Image _000_RebootVM_h32bit_16 = Properties.Resources._000_RebootVM_h32bit_16;
|
||||
public static Image _000_RemoveIPAddress_h32bit_16 = Properties.Resources._000_RemoveIPAddress_h32bit_16;
|
||||
public static Image _000_RemoveSite_h32bit_16 = Properties.Resources._000_RemoveSite_h32bit_16;
|
||||
public static Image _000_Resumed_h32bit_16 = Properties.Resources._000_Resumed_h32bit_16;
|
||||
public static Image _000_Resumed_h32bit_24 = Properties.Resources._000_Resumed_h32bit_24;
|
||||
public static Image _000_ScheduledVMsnapshotDiskMemory_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskMemory_h32bit_16;
|
||||
public static Image _000_ScheduledVMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_ScheduledVMSnapshotDiskMemory_h32bit_32;
|
||||
public static Image _000_ScheduledVMsnapshotDiskOnly_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_16;
|
||||
public static Image _000_ScheduledVMsnapshotDiskOnly_h32bit_32 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_32;
|
||||
public static Image _000_Search_h32bit_16 = Properties.Resources._000_Search_h32bit_16;
|
||||
public static Image _000_Server_h32bit_16 = Properties.Resources._000_Server_h32bit_16;
|
||||
public static Image _000_Server_h32bit_16_w_alert = Properties.Resources._000_Server_h32bit_16_w_alert;
|
||||
public static Image _000_ServerDisconnected_h32bit_16 = Properties.Resources._000_ServerDisconnected_h32bit_16;
|
||||
public static Image _000_ServerErrorFile_h32bit_16 = Properties.Resources._000_ServerErrorFile_h32bit_16;
|
||||
public static Image _000_ServerHome_h32bit_16 = Properties.Resources._000_ServerHome_h32bit_16;
|
||||
public static Image _000_ServerInProgress_h32bit_16 = Properties.Resources._000_ServerInProgress_h32bit_16;
|
||||
public static Image _000_ServerMaintenance_h32bit_16 = Properties.Resources._000_ServerMaintenance_h32bit_16;
|
||||
public static Image _000_ServerMaintenance_h32bit_32 = Properties.Resources._000_ServerMaintenance_h32bit_32;
|
||||
public static Image _000_ServerWlb_h32bit_16 = Properties.Resources._000_ServerWlb_h32bit_16;
|
||||
public static Image _000_Sites_h32bit_16 = Properties.Resources._000_Sites_h32bit_16;
|
||||
public static Image _000_SliderTexture = Properties.Resources._000_SliderTexture;
|
||||
public static Image _000_StartVM_h32bit_16 = Properties.Resources._000_StartVM_h32bit_16;
|
||||
public static Image _000_StoppedVM_h32bit_16 = Properties.Resources._000_StoppedVM_h32bit_16;
|
||||
public static Image _000_Storage_h32bit_16 = Properties.Resources._000_Storage_h32bit_16;
|
||||
public static Image _000_StorageBroken_h32bit_16 = Properties.Resources._000_StorageBroken_h32bit_16;
|
||||
public static Image _000_StorageDefault_h32bit_16 = Properties.Resources._000_StorageDefault_h32bit_16;
|
||||
public static Image _000_StorageDisabled_h32bit_16 = Properties.Resources._000_StorageDisabled_h32bit_16;
|
||||
public static Image _000_SuspendVM_h32bit_16 = Properties.Resources._000_SuspendVM_h32bit_16;
|
||||
public static Image _000_SwitcherBackground = Properties.Resources._000_SwitcherBackground;
|
||||
public static Image _000_Tag_h32bit_16 = Properties.Resources._000_Tag_h32bit_16;
|
||||
public static Image _000_TCP_IPGroup_h32bit_16 = Properties.Resources._000_TCP_IPGroup_h32bit_16;
|
||||
public static Image _000_TemplateDisabled_h32bit_16 = Properties.Resources._000_TemplateDisabled_h32bit_16;
|
||||
public static Image _000_TestFailover_h32bit_32 = Properties.Resources._000_TestFailover_h32bit_32;
|
||||
public static Image _000_Tick_h32bit_16 = Properties.Resources._000_Tick_h32bit_16;
|
||||
public static Image _000_ToolBar_Pref_Icon_dis = Properties.Resources._000_ToolBar_Pref_Icon_dis;
|
||||
public static Image _000_ToolBar_Pref_Icon_ovr = Properties.Resources._000_ToolBar_Pref_Icon_ovr;
|
||||
public static Image _000_ToolBar_Pref_Icon_up = Properties.Resources._000_ToolBar_Pref_Icon_up;
|
||||
public static Image _000_ToolBar_USB_Icon_dis = Properties.Resources._000_ToolBar_USB_Icon_dis;
|
||||
public static Image _000_ToolBar_USB_Icon_ovr = Properties.Resources._000_ToolBar_USB_Icon_ovr;
|
||||
public static Image _000_ToolBar_USB_Icon_up = Properties.Resources._000_ToolBar_USB_Icon_up;
|
||||
public static Image _000_TreeConnected_h32bit_16 = Properties.Resources._000_TreeConnected_h32bit_16;
|
||||
public static Image _000_UpgradePool_h32bit_32 = Properties.Resources._000_UpgradePool_h32bit_32;
|
||||
public static Image _000_User_h32bit_16 = Properties.Resources._000_User_h32bit_16;
|
||||
public static Image _000_UserAndGroup_h32bit_16 = Properties.Resources._000_UserAndGroup_h32bit_16;
|
||||
public static Image _000_UserAndGroup_h32bit_32 = Properties.Resources._000_UserAndGroup_h32bit_32;
|
||||
public static Image _000_UserTemplate_h32bit_16 = Properties.Resources._000_UserTemplate_h32bit_16;
|
||||
public static Image _000_ViewModeList_h32bit_16 = Properties.Resources._000_ViewModeList_h32bit_16;
|
||||
public static Image _000_ViewModeTree_h32bit_16 = Properties.Resources._000_ViewModeTree_h32bit_16;
|
||||
public static Image _000_VirtualAppliance_h32bit_16 = Properties.Resources._000_VirtualAppliance_h32bit_16;
|
||||
public static Image _000_VirtualStorage_h32bit_16 = Properties.Resources._000_VirtualStorage_h32bit_16;
|
||||
public static Image _000_VM_h32bit_16 = Properties.Resources._000_VM_h32bit_16;
|
||||
public static Image _000_VM_h32bit_24 = Properties.Resources._000_VM_h32bit_24;
|
||||
public static Image _000_VMDisabled_h32bit_16 = Properties.Resources._000_VMDisabled_h32bit_16;
|
||||
public static Image _000_VMPausedDisabled_h32bit_16 = Properties.Resources._000_VMPausedDisabled_h32bit_16;
|
||||
public static Image _000_VMSession_h32bit_16 = Properties.Resources._000_VMSession_h32bit_16;
|
||||
public static Image _000_VMSnapshotDiskMemory_h32bit_16 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_16;
|
||||
public static Image _000_VMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_32;
|
||||
public static Image _000_VMSnapShotDiskOnly_h32bit_16 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_16;
|
||||
public static Image _000_VMSnapShotDiskOnly_h32bit_32 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_32;
|
||||
public static Image _000_VMStarting_h32bit_16 = Properties.Resources._000_VMStarting_h32bit_16;
|
||||
public static Image _000_VMStartingDisabled_h32bit_16 = Properties.Resources._000_VMStartingDisabled_h32bit_16;
|
||||
public static Image _000_VMStoppedDisabled_h32bit_16 = Properties.Resources._000_VMStoppedDisabled_h32bit_16;
|
||||
public static Image _000_VMTemplate_h32bit_16 = Properties.Resources._000_VMTemplate_h32bit_16;
|
||||
public static Image _000_WarningAlert_h32bit_32 = Properties.Resources._000_WarningAlert_h32bit_32;
|
||||
public static Image _000_weighting_h32bit_16 = Properties.Resources._000_weighting_h32bit_16;
|
||||
public static Image _000_XenCenterAlerts_h32bit_24 = Properties.Resources._000_XenCenterAlerts_h32bit_24;
|
||||
public static Image _001_Back_h32bit_24 = Properties.Resources._001_Back_h32bit_24;
|
||||
public static Image _001_CreateVM_h32bit_16 = Properties.Resources._001_CreateVM_h32bit_16;
|
||||
public static Image _001_ForceReboot_h32bit_16 = Properties.Resources._001_ForceReboot_h32bit_16;
|
||||
public static Image _001_ForceReboot_h32bit_24 = Properties.Resources._001_ForceReboot_h32bit_24;
|
||||
public static Image _001_ForceShutDown_h32bit_16 = Properties.Resources._001_ForceShutDown_h32bit_16;
|
||||
public static Image _001_ForceShutDown_h32bit_24 = Properties.Resources._001_ForceShutDown_h32bit_24;
|
||||
public static Image _001_Forward_h32bit_24 = Properties.Resources._001_Forward_h32bit_24;
|
||||
public static Image _001_LifeCycle_h32bit_24 = Properties.Resources._001_LifeCycle_h32bit_24;
|
||||
public static Image _001_PerformanceGraph_h32bit_16 = Properties.Resources._001_PerformanceGraph_h32bit_16;
|
||||
public static Image _001_Pin_h32bit_16 = Properties.Resources._001_Pin_h32bit_16;
|
||||
public static Image _001_PowerOn_h32bit_16 = Properties.Resources._001_PowerOn_h32bit_16;
|
||||
public static Image _001_PowerOn_h32bit_24 = Properties.Resources._001_PowerOn_h32bit_24;
|
||||
public static Image _001_Reboot_h32bit_16 = Properties.Resources._001_Reboot_h32bit_16;
|
||||
public static Image _001_Reboot_h32bit_24 = Properties.Resources._001_Reboot_h32bit_24;
|
||||
public static Image _001_ShutDown_h32bit_16 = Properties.Resources._001_ShutDown_h32bit_16;
|
||||
public static Image _001_ShutDown_h32bit_24 = Properties.Resources._001_ShutDown_h32bit_24;
|
||||
public static Image _001_Tools_h32bit_16 = Properties.Resources._001_Tools_h32bit_16;
|
||||
public static Image _001_WindowView_h32bit_16 = Properties.Resources._001_WindowView_h32bit_16;
|
||||
public static Image _002_Configure_h32bit_16 = Properties.Resources._002_Configure_h32bit_16;
|
||||
public static Image _015_Download_h32bit_32 = Properties.Resources._015_Download_h32bit_32;
|
||||
public static Image _075_TickRound_h32bit_16 = Properties.Resources._075_TickRound_h32bit_16;
|
||||
public static Image _075_WarningRound_h32bit_16 = Properties.Resources._075_WarningRound_h32bit_16;
|
||||
public static Image _112_LeftArrowLong_Blue_24x24_72 = Properties.Resources._112_LeftArrowLong_Blue_24x24_72;
|
||||
public static Image _112_RightArrowLong_Blue_24x24_72 = Properties.Resources._112_RightArrowLong_Blue_24x24_72;
|
||||
public static Image about_box_graphic_423x79 = Properties.Resources.about_box_graphic_423x79;
|
||||
public static Image ajax_loader = Properties.Resources.ajax_loader;
|
||||
public static Image alert1_16 = Properties.Resources.alert1_16;
|
||||
public static Image alert2_16 = Properties.Resources.alert2_16;
|
||||
public static Image alert3_16 = Properties.Resources.alert3_16;
|
||||
public static Image alert4_16 = Properties.Resources.alert4_16;
|
||||
public static Image alert5_16 = Properties.Resources.alert5_16;
|
||||
public static Image alert6_16 = Properties.Resources.alert6_16;
|
||||
public static Image alerts_32 = Properties.Resources.alerts_32;
|
||||
public static Image ascending_triangle = Properties.Resources.ascending_triangle;
|
||||
public static Image asterisk = Properties.Resources.asterisk;
|
||||
public static Image attach_24 = Properties.Resources.attach_24;
|
||||
public static Image attach_virtualstorage_32 = Properties.Resources.attach_virtualstorage_32;
|
||||
public static Image backup_restore_32 = Properties.Resources.backup_restore_32;
|
||||
public static Image cancelled_action_16 = Properties.Resources.cancelled_action_16;
|
||||
public static Image centos_16x = Properties.Resources.centos_16x;
|
||||
public static Image change_password_16 = Properties.Resources.change_password_16;
|
||||
public static Image change_password_32 = Properties.Resources.change_password_32;
|
||||
public static Image clonevm_16 = Properties.Resources.clonevm_16;
|
||||
public static Image close_16 = Properties.Resources.close_16;
|
||||
public static Image commands_16 = Properties.Resources.commands_16;
|
||||
public static Image console_16 = Properties.Resources.console_16;
|
||||
public static Image contracted_triangle = Properties.Resources.contracted_triangle;
|
||||
public static Image copy_16 = Properties.Resources.copy_16;
|
||||
public static Image coreos_16 = Properties.Resources.coreos_16;
|
||||
public static Image coreos_globe_icon = Properties.Resources.coreos_globe_icon;
|
||||
public static Image cross = Properties.Resources.cross;
|
||||
public static Image DateTime16 = Properties.Resources.DateTime16;
|
||||
public static Image DC_16 = Properties.Resources.DC_16;
|
||||
public static Image debian_16x = Properties.Resources.debian_16x;
|
||||
public static Image descending_triangle = Properties.Resources.descending_triangle;
|
||||
public static Image desktop = Properties.Resources.desktop;
|
||||
public static Image detach_24 = Properties.Resources.detach_24;
|
||||
public static Image edit_16 = Properties.Resources.edit_16;
|
||||
public static Image expanded_triangle = Properties.Resources.expanded_triangle;
|
||||
public static Image export_32 = Properties.Resources.export_32;
|
||||
public static Image folder_grey = Properties.Resources.folder_grey;
|
||||
public static Image folder_separator = Properties.Resources.folder_separator;
|
||||
public static Image grab = Properties.Resources.grab;
|
||||
public static Image grapharea = Properties.Resources.grapharea;
|
||||
public static Image graphline = Properties.Resources.graphline;
|
||||
public static Image gripper = Properties.Resources.gripper;
|
||||
public static Image ha_16 = Properties.Resources.ha_16;
|
||||
public static Image help_16_hover = Properties.Resources.help_16_hover;
|
||||
public static Image help_24 = Properties.Resources.help_24;
|
||||
public static Image help_24_hover = Properties.Resources.help_24_hover;
|
||||
public static Image help_32_hover = Properties.Resources.help_32_hover;
|
||||
public static Image homepage_bullet = Properties.Resources.homepage_bullet;
|
||||
public static Image import_32 = Properties.Resources.import_32;
|
||||
public static Image infra_view_16 = Properties.Resources.infra_view_16;
|
||||
public static Image infra_view_16_textured = Properties.Resources.infra_view_16_textured;
|
||||
public static Image infra_view_24 = Properties.Resources.infra_view_24;
|
||||
public static Image licensekey_32 = Properties.Resources.licensekey_32;
|
||||
public static Image lifecycle_hot = Properties.Resources.lifecycle_hot;
|
||||
public static Image lifecycle_pressed = Properties.Resources.lifecycle_pressed;
|
||||
public static Image log_destination_16 = Properties.Resources.log_destination_16;
|
||||
public static Image Logo = Properties.Resources.Logo;
|
||||
public static Image memory_dynmax_slider = Properties.Resources.memory_dynmax_slider;
|
||||
public static Image memory_dynmax_slider_dark = Properties.Resources.memory_dynmax_slider_dark;
|
||||
public static Image memory_dynmax_slider_light = Properties.Resources.memory_dynmax_slider_light;
|
||||
public static Image memory_dynmax_slider_noedit = Properties.Resources.memory_dynmax_slider_noedit;
|
||||
public static Image memory_dynmax_slider_noedit_small = Properties.Resources.memory_dynmax_slider_noedit_small;
|
||||
public static Image memory_dynmax_slider_small = Properties.Resources.memory_dynmax_slider_small;
|
||||
public static Image memory_dynmin_slider = Properties.Resources.memory_dynmin_slider;
|
||||
public static Image memory_dynmin_slider_dark = Properties.Resources.memory_dynmin_slider_dark;
|
||||
public static Image memory_dynmin_slider_light = Properties.Resources.memory_dynmin_slider_light;
|
||||
public static Image memory_dynmin_slider_noedit = Properties.Resources.memory_dynmin_slider_noedit;
|
||||
public static Image memory_dynmin_slider_noedit_small = Properties.Resources.memory_dynmin_slider_noedit_small;
|
||||
public static Image memory_dynmin_slider_small = Properties.Resources.memory_dynmin_slider_small;
|
||||
public static Image minus = Properties.Resources.minus;
|
||||
public static Image more_16 = Properties.Resources.more_16;
|
||||
public static Image neokylin_16x = Properties.Resources.neokylin_16x;
|
||||
public static Image notif_alerts_16 = Properties.Resources.notif_alerts_16;
|
||||
public static Image notif_events_16 = Properties.Resources.notif_events_16;
|
||||
public static Image notif_events_errors_16 = Properties.Resources.notif_events_errors_16;
|
||||
public static Image notif_none_16 = Properties.Resources.notif_none_16;
|
||||
public static Image notif_none_24 = Properties.Resources.notif_none_24;
|
||||
public static Image notif_updates_16 = Properties.Resources.notif_updates_16;
|
||||
public static Image objects_16 = Properties.Resources.objects_16;
|
||||
public static Image objects_16_textured = Properties.Resources.objects_16_textured;
|
||||
public static Image objects_24 = Properties.Resources.objects_24;
|
||||
public static Image oracle_16x = Properties.Resources.oracle_16x;
|
||||
public static Image org_view_16 = Properties.Resources.org_view_16;
|
||||
public static Image org_view_24 = Properties.Resources.org_view_24;
|
||||
public static Image padlock = Properties.Resources.padlock;
|
||||
public static Image paste_16 = Properties.Resources.paste_16;
|
||||
public static Image PausedDC_16 = Properties.Resources.PausedDC_16;
|
||||
public static Image PDChevronDown = Properties.Resources.PDChevronDown;
|
||||
public static Image PDChevronDownOver = Properties.Resources.PDChevronDownOver;
|
||||
public static Image PDChevronLeft = Properties.Resources.PDChevronLeft;
|
||||
public static Image PDChevronRight = Properties.Resources.PDChevronRight;
|
||||
public static Image PDChevronUp = Properties.Resources.PDChevronUp;
|
||||
public static Image PDChevronUpOver = Properties.Resources.PDChevronUpOver;
|
||||
public static Image pool_up_16 = Properties.Resources.pool_up_16;
|
||||
public static Image redhat_16x = Properties.Resources.redhat_16x;
|
||||
public static Image Refresh16 = Properties.Resources.Refresh16;
|
||||
public static Image RunningDC_16 = Properties.Resources.RunningDC_16;
|
||||
public static Image saved_searches_16 = Properties.Resources.saved_searches_16;
|
||||
public static Image saved_searches_24 = Properties.Resources.saved_searches_24;
|
||||
public static Image scilinux_16x = Properties.Resources.scilinux_16x;
|
||||
public static Image server_up_16 = Properties.Resources.server_up_16;
|
||||
public static Image sl_16 = Properties.Resources.sl_16;
|
||||
public static Image sl_add_storage_system_16 = Properties.Resources.sl_add_storage_system_16;
|
||||
public static Image sl_add_storage_system_32 = Properties.Resources.sl_add_storage_system_32;
|
||||
public static Image sl_add_storage_system_small_16 = Properties.Resources.sl_add_storage_system_small_16;
|
||||
public static Image sl_connected_16 = Properties.Resources.sl_connected_16;
|
||||
public static Image sl_connecting_16 = Properties.Resources.sl_connecting_16;
|
||||
public static Image sl_disconnected_16 = Properties.Resources.sl_disconnected_16;
|
||||
public static Image sl_lun_16 = Properties.Resources.sl_lun_16;
|
||||
public static Image sl_luns_16 = Properties.Resources.sl_luns_16;
|
||||
public static Image sl_pool_16 = Properties.Resources.sl_pool_16;
|
||||
public static Image sl_pools_16 = Properties.Resources.sl_pools_16;
|
||||
public static Image sl_system_16 = Properties.Resources.sl_system_16;
|
||||
public static Image SpinningFrame0 = Properties.Resources.SpinningFrame0;
|
||||
public static Image SpinningFrame1 = Properties.Resources.SpinningFrame1;
|
||||
public static Image SpinningFrame2 = Properties.Resources.SpinningFrame2;
|
||||
public static Image SpinningFrame3 = Properties.Resources.SpinningFrame3;
|
||||
public static Image SpinningFrame4 = Properties.Resources.SpinningFrame4;
|
||||
public static Image SpinningFrame5 = Properties.Resources.SpinningFrame5;
|
||||
public static Image SpinningFrame6 = Properties.Resources.SpinningFrame6;
|
||||
public static Image SpinningFrame7 = Properties.Resources.SpinningFrame7;
|
||||
public static Image StoppedDC_16 = Properties.Resources.StoppedDC_16;
|
||||
public static Image subscribe = Properties.Resources.subscribe;
|
||||
public static Image suse_16x = Properties.Resources.suse_16x;
|
||||
public static Image tools_notinstalled_16x = Properties.Resources.tools_notinstalled_16x;
|
||||
public static Image tools_outofdate_16x = Properties.Resources.tools_outofdate_16x;
|
||||
public static Image tools_uptodate_16x = Properties.Resources.tools_uptodate_16x;
|
||||
public static Image tree_minus = Properties.Resources.tree_minus;
|
||||
public static Image tree_plus = Properties.Resources.tree_plus;
|
||||
public static Image tshadowdown = Properties.Resources.tshadowdown;
|
||||
public static Image tshadowdownleft = Properties.Resources.tshadowdownleft;
|
||||
public static Image tshadowdownright = Properties.Resources.tshadowdownright;
|
||||
public static Image tshadowright = Properties.Resources.tshadowright;
|
||||
public static Image tshadowtopright = Properties.Resources.tshadowtopright;
|
||||
public static Image ubuntu_16x = Properties.Resources.ubuntu_16x;
|
||||
public static Image upsell_16 = Properties.Resources.upsell_16;
|
||||
public static Image usagebar_0 = Properties.Resources.usagebar_0;
|
||||
public static Image usagebar_1 = Properties.Resources.usagebar_1;
|
||||
public static Image usagebar_10 = Properties.Resources.usagebar_10;
|
||||
public static Image usagebar_2 = Properties.Resources.usagebar_2;
|
||||
public static Image usagebar_3 = Properties.Resources.usagebar_3;
|
||||
public static Image usagebar_4 = Properties.Resources.usagebar_4;
|
||||
public static Image usagebar_5 = Properties.Resources.usagebar_5;
|
||||
public static Image usagebar_6 = Properties.Resources.usagebar_6;
|
||||
public static Image usagebar_7 = Properties.Resources.usagebar_7;
|
||||
public static Image usagebar_8 = Properties.Resources.usagebar_8;
|
||||
public static Image usagebar_9 = Properties.Resources.usagebar_9;
|
||||
public static Image virtualstorage_snapshot_16 = Properties.Resources.virtualstorage_snapshot_16;
|
||||
public static Image vmBackground = Properties.Resources.vmBackground;
|
||||
public static Image vmBackgroundCurrent = Properties.Resources.vmBackgroundCurrent;
|
||||
public static Image VMTemplate_h32bit_32 = Properties.Resources.VMTemplate_h32bit_32;
|
||||
public static Image vnc_local_cursor = Properties.Resources.vnc_local_cursor;
|
||||
public static Image windows_h32bit_16 = Properties.Resources.windows_h32bit_16;
|
||||
public static Image wizard_background = Properties.Resources.wizard_background;
|
||||
public static Image WLB = Properties.Resources.WLB;
|
||||
public static Image XS = Properties.Resources.XS;
|
||||
public static Image ConversionManager = Properties.Resources.xcm;
|
||||
public static Image ConversionManager_32 = Properties.Resources.xcm_32x32;
|
||||
public static Image queued = Properties.Resources.queued;
|
||||
// the following are generated from Resources using:
|
||||
// cat Resources.Designer.cs | grep 'internal static System.Drawing.Bitmap' | sed "s/ {//g" | awk -F"Bitmap " '{print"public static Bitmap " $2 " = Properties.Resources." $2 ";"}'
|
||||
public static Bitmap _000_Abort_h32bit_16 = Properties.Resources._000_Abort_h32bit_16;
|
||||
public static Bitmap _000_AddApplicationServer_h32bit_16 = Properties.Resources._000_AddApplicationServer_h32bit_16;
|
||||
public static Bitmap _000_AddApplicationServer_h32bit_24 = Properties.Resources._000_AddApplicationServer_h32bit_24;
|
||||
public static Bitmap _000_AddIPAddress_h32bit_16 = Properties.Resources._000_AddIPAddress_h32bit_16;
|
||||
public static Bitmap _000_AddSite_h32bit_16 = Properties.Resources._000_AddSite_h32bit_16;
|
||||
public static Bitmap _000_Alert2_h32bit_16 = Properties.Resources._000_Alert2_h32bit_16;
|
||||
public static Bitmap _000_BackupMetadata_h32bit_16 = Properties.Resources._000_BackupMetadata_h32bit_16;
|
||||
public static Bitmap _000_BackupMetadata_h32bit_32 = Properties.Resources._000_BackupMetadata_h32bit_32;
|
||||
public static Bitmap _000_ConfigureIPAddresses_h32bit_16 = Properties.Resources._000_ConfigureIPAddresses_h32bit_16;
|
||||
public static Bitmap _000_CPU_h32bit_16 = Properties.Resources._000_CPU_h32bit_16;
|
||||
public static Bitmap _000_CreateVirtualStorage_h32bit_32 = Properties.Resources._000_CreateVirtualStorage_h32bit_32;
|
||||
public static Bitmap _000_CreateVM_h32bit_24 = Properties.Resources._000_CreateVM_h32bit_24;
|
||||
public static Bitmap _000_CreateVM_h32bit_32 = Properties.Resources._000_CreateVM_h32bit_32;
|
||||
public static Bitmap _000_defaultSpyglass_h32bit_16 = Properties.Resources._000_defaultSpyglass_h32bit_16;
|
||||
public static Bitmap _000_DeleteAllMessages_h32bit_16 = Properties.Resources._000_DeleteAllMessages_h32bit_16;
|
||||
public static Bitmap _000_DeleteMessage_h32bit_16 = Properties.Resources._000_DeleteMessage_h32bit_16;
|
||||
public static Bitmap _000_DeleteVirtualAppliance_h32bit_16 = Properties.Resources._000_DeleteVirtualAppliance_h32bit_16;
|
||||
public static Bitmap _000_DisasterRecovery_h32bit_32 = Properties.Resources._000_DisasterRecovery_h32bit_32;
|
||||
public static Bitmap _000_Email_h32bit_16 = Properties.Resources._000_Email_h32bit_16;
|
||||
public static Bitmap _000_EnablePowerControl_h32bit_16 = Properties.Resources._000_EnablePowerControl_h32bit_16;
|
||||
public static Bitmap _000_error_h32bit_16 = Properties.Resources._000_error_h32bit_16;
|
||||
public static Bitmap _000_error_h32bit_32 = Properties.Resources._000_error_h32bit_32;
|
||||
public static Bitmap _000_ExcludeHost_h32bit_16 = Properties.Resources._000_ExcludeHost_h32bit_16;
|
||||
public static Bitmap _000_ExportMessages_h32bit_16 = Properties.Resources._000_ExportMessages_h32bit_16;
|
||||
public static Bitmap _000_ExportVirtualAppliance_h32bit_16 = Properties.Resources._000_ExportVirtualAppliance_h32bit_16;
|
||||
public static Bitmap _000_ExportVirtualAppliance_h32bit_32 = Properties.Resources._000_ExportVirtualAppliance_h32bit_32;
|
||||
public static Bitmap _000_Failback_h32bit_32 = Properties.Resources._000_Failback_h32bit_32;
|
||||
public static Bitmap _000_Failover_h32bit_32 = Properties.Resources._000_Failover_h32bit_32;
|
||||
public static Bitmap _000_Fields_h32bit_16 = Properties.Resources._000_Fields_h32bit_16;
|
||||
public static Bitmap _000_FilterDates_h32bit_16 = Properties.Resources._000_FilterDates_h32bit_16;
|
||||
public static Bitmap _000_FilterServer_h32bit_16 = Properties.Resources._000_FilterServer_h32bit_16;
|
||||
public static Bitmap _000_FilterSeverity_h32bit_16 = Properties.Resources._000_FilterSeverity_h32bit_16;
|
||||
public static Bitmap _000_Folder_open_h32bit_16 = Properties.Resources._000_Folder_open_h32bit_16;
|
||||
public static Bitmap _000_GetMemoryInfo_h32bit_16 = Properties.Resources._000_GetMemoryInfo_h32bit_16;
|
||||
public static Bitmap _000_GetMemoryInfo_h32bit_32 = Properties.Resources._000_GetMemoryInfo_h32bit_32;
|
||||
public static Bitmap _000_GetServerReport_h32bit_16 = Properties.Resources._000_GetServerReport_h32bit_16;
|
||||
public static Bitmap _000_GetServerReport_h32bit_32 = Properties.Resources._000_GetServerReport_h32bit_32;
|
||||
public static Bitmap _000_HAServer_h32bit_32 = Properties.Resources._000_HAServer_h32bit_32;
|
||||
public static Bitmap _000_HelpIM_h32bit_16 = Properties.Resources._000_HelpIM_h32bit_16;
|
||||
public static Bitmap _000_HelpIM_h32bit_32 = Properties.Resources._000_HelpIM_h32bit_32;
|
||||
public static Bitmap _000_HighlightVM_h32bit_24 = Properties.Resources._000_HighlightVM_h32bit_24;
|
||||
public static Bitmap _000_HighLightVM_h32bit_32 = Properties.Resources._000_HighLightVM_h32bit_32;
|
||||
public static Bitmap _000_host_0_star = Properties.Resources._000_host_0_star;
|
||||
public static Bitmap _000_host_1_star = Properties.Resources._000_host_1_star;
|
||||
public static Bitmap _000_host_10_star = Properties.Resources._000_host_10_star;
|
||||
public static Bitmap _000_host_2_star = Properties.Resources._000_host_2_star;
|
||||
public static Bitmap _000_host_3_star = Properties.Resources._000_host_3_star;
|
||||
public static Bitmap _000_host_4_star = Properties.Resources._000_host_4_star;
|
||||
public static Bitmap _000_host_5_star = Properties.Resources._000_host_5_star;
|
||||
public static Bitmap _000_host_6_star = Properties.Resources._000_host_6_star;
|
||||
public static Bitmap _000_host_7_star = Properties.Resources._000_host_7_star;
|
||||
public static Bitmap _000_host_8_star = Properties.Resources._000_host_8_star;
|
||||
public static Bitmap _000_host_9_star = Properties.Resources._000_host_9_star;
|
||||
public static Bitmap _000_HostUnpatched_h32bit_16 = Properties.Resources._000_HostUnpatched_h32bit_16;
|
||||
public static Bitmap _000_ImportVirtualAppliance_h32bit_16 = Properties.Resources._000_ImportVirtualAppliance_h32bit_16;
|
||||
public static Bitmap _000_ImportVirtualAppliance_h32bit_32 = Properties.Resources._000_ImportVirtualAppliance_h32bit_32;
|
||||
public static Bitmap _000_ImportVM_h32bit_32 = Properties.Resources._000_ImportVM_h32bit_32;
|
||||
public static Bitmap _000_Info3_h32bit_16 = Properties.Resources._000_Info3_h32bit_16;
|
||||
public static Bitmap _000_ManagementInterface_h32bit_16 = Properties.Resources._000_ManagementInterface_h32bit_16;
|
||||
public static Bitmap _000_MigrateStoppedVM_h32bit_16 = Properties.Resources._000_MigrateStoppedVM_h32bit_16;
|
||||
public static Bitmap _000_MigrateSuspendedVM_h32bit_16 = Properties.Resources._000_MigrateSuspendedVM_h32bit_16;
|
||||
public static Bitmap _000_MigrateVM_h32bit_16 = Properties.Resources._000_MigrateVM_h32bit_16;
|
||||
public static Bitmap _000_MigrateVM_h32bit_32 = Properties.Resources._000_MigrateVM_h32bit_32;
|
||||
public static Bitmap _000_Module_h32bit_16 = Properties.Resources._000_Module_h32bit_16;
|
||||
public static Bitmap _000_Network_h32bit_16 = Properties.Resources._000_Network_h32bit_16;
|
||||
public static Bitmap _000_NewNetwork_h32bit_32 = Properties.Resources._000_NewNetwork_h32bit_32;
|
||||
public static Bitmap _000_NewStorage_h32bit_16 = Properties.Resources._000_NewStorage_h32bit_16;
|
||||
public static Bitmap _000_NewStorage_h32bit_24 = Properties.Resources._000_NewStorage_h32bit_24;
|
||||
public static Bitmap _000_NewStorage_h32bit_32 = Properties.Resources._000_NewStorage_h32bit_32;
|
||||
public static Bitmap _000_NewVirtualAppliance_h32bit_16 = Properties.Resources._000_NewVirtualAppliance_h32bit_16;
|
||||
public static Bitmap _000_NewVirtualAppliance_h32bit_32 = Properties.Resources._000_NewVirtualAppliance_h32bit_32;
|
||||
public static Bitmap _000_Optimize_h32bit_16 = Properties.Resources._000_Optimize_h32bit_16;
|
||||
public static Bitmap _000_Patch_h32bit_16 = Properties.Resources._000_Patch_h32bit_16;
|
||||
public static Bitmap _000_Patch_h32bit_32 = Properties.Resources._000_Patch_h32bit_32;
|
||||
public static Bitmap _000_paused_h32bit_16 = Properties.Resources._000_paused_h32bit_16;
|
||||
public static Bitmap _000_Paused_h32bit_24 = Properties.Resources._000_Paused_h32bit_24;
|
||||
public static Bitmap _000_Pool_h32bit_16 = Properties.Resources._000_Pool_h32bit_16;
|
||||
public static Bitmap _000_Pool_h32bit_16_w_alert = Properties.Resources._000_Pool_h32bit_16_w_alert;
|
||||
public static Bitmap _000_PoolConnected_h32bit_16 = Properties.Resources._000_PoolConnected_h32bit_16;
|
||||
public static Bitmap _000_PoolNew_h32bit_16 = Properties.Resources._000_PoolNew_h32bit_16;
|
||||
public static Bitmap _000_PoolNew_h32bit_24 = Properties.Resources._000_PoolNew_h32bit_24;
|
||||
public static Bitmap _000_RebootVM_h32bit_16 = Properties.Resources._000_RebootVM_h32bit_16;
|
||||
public static Bitmap _000_RemoveIPAddress_h32bit_16 = Properties.Resources._000_RemoveIPAddress_h32bit_16;
|
||||
public static Bitmap _000_RemoveSite_h32bit_16 = Properties.Resources._000_RemoveSite_h32bit_16;
|
||||
public static Bitmap _000_Resumed_h32bit_16 = Properties.Resources._000_Resumed_h32bit_16;
|
||||
public static Bitmap _000_Resumed_h32bit_24 = Properties.Resources._000_Resumed_h32bit_24;
|
||||
public static Bitmap _000_ScheduledVMsnapshotDiskMemory_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskMemory_h32bit_16;
|
||||
public static Bitmap _000_ScheduledVMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_ScheduledVMSnapshotDiskMemory_h32bit_32;
|
||||
public static Bitmap _000_ScheduledVMsnapshotDiskOnly_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_16;
|
||||
public static Bitmap _000_ScheduledVMsnapshotDiskOnly_h32bit_32 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_32;
|
||||
public static Bitmap _000_Search_h32bit_16 = Properties.Resources._000_Search_h32bit_16;
|
||||
public static Bitmap _000_Server_h32bit_16 = Properties.Resources._000_Server_h32bit_16;
|
||||
public static Bitmap _000_Server_h32bit_16_w_alert = Properties.Resources._000_Server_h32bit_16_w_alert;
|
||||
public static Bitmap _000_ServerDisconnected_h32bit_16 = Properties.Resources._000_ServerDisconnected_h32bit_16;
|
||||
public static Bitmap _000_ServerErrorFile_h32bit_16 = Properties.Resources._000_ServerErrorFile_h32bit_16;
|
||||
public static Bitmap _000_ServerHome_h32bit_16 = Properties.Resources._000_ServerHome_h32bit_16;
|
||||
public static Bitmap _000_ServerInProgress_h32bit_16 = Properties.Resources._000_ServerInProgress_h32bit_16;
|
||||
public static Bitmap _000_ServerMaintenance_h32bit_16 = Properties.Resources._000_ServerMaintenance_h32bit_16;
|
||||
public static Bitmap _000_ServerMaintenance_h32bit_32 = Properties.Resources._000_ServerMaintenance_h32bit_32;
|
||||
public static Bitmap _000_ServerWlb_h32bit_16 = Properties.Resources._000_ServerWlb_h32bit_16;
|
||||
public static Bitmap _000_Sites_h32bit_16 = Properties.Resources._000_Sites_h32bit_16;
|
||||
public static Bitmap _000_SliderTexture = Properties.Resources._000_SliderTexture;
|
||||
public static Bitmap _000_StartVM_h32bit_16 = Properties.Resources._000_StartVM_h32bit_16;
|
||||
public static Bitmap _000_StoppedVM_h32bit_16 = Properties.Resources._000_StoppedVM_h32bit_16;
|
||||
public static Bitmap _000_Storage_h32bit_16 = Properties.Resources._000_Storage_h32bit_16;
|
||||
public static Bitmap _000_StorageBroken_h32bit_16 = Properties.Resources._000_StorageBroken_h32bit_16;
|
||||
public static Bitmap _000_StorageDefault_h32bit_16 = Properties.Resources._000_StorageDefault_h32bit_16;
|
||||
public static Bitmap _000_StorageDisabled_h32bit_16 = Properties.Resources._000_StorageDisabled_h32bit_16;
|
||||
public static Bitmap _000_SuspendVM_h32bit_16 = Properties.Resources._000_SuspendVM_h32bit_16;
|
||||
public static Bitmap _000_SwitcherBackground = Properties.Resources._000_SwitcherBackground;
|
||||
public static Bitmap _000_Tag_h32bit_16 = Properties.Resources._000_Tag_h32bit_16;
|
||||
public static Bitmap _000_TCP_IPGroup_h32bit_16 = Properties.Resources._000_TCP_IPGroup_h32bit_16;
|
||||
public static Bitmap _000_TemplateDisabled_h32bit_16 = Properties.Resources._000_TemplateDisabled_h32bit_16;
|
||||
public static Bitmap _000_TestFailover_h32bit_32 = Properties.Resources._000_TestFailover_h32bit_32;
|
||||
public static Bitmap _000_Tick_h32bit_16 = Properties.Resources._000_Tick_h32bit_16;
|
||||
public static Bitmap _000_ToolBar_Pref_Icon_dis = Properties.Resources._000_ToolBar_Pref_Icon_dis;
|
||||
public static Bitmap _000_ToolBar_Pref_Icon_ovr = Properties.Resources._000_ToolBar_Pref_Icon_ovr;
|
||||
public static Bitmap _000_ToolBar_Pref_Icon_up = Properties.Resources._000_ToolBar_Pref_Icon_up;
|
||||
public static Bitmap _000_ToolBar_USB_Icon_dis = Properties.Resources._000_ToolBar_USB_Icon_dis;
|
||||
public static Bitmap _000_ToolBar_USB_Icon_ovr = Properties.Resources._000_ToolBar_USB_Icon_ovr;
|
||||
public static Bitmap _000_ToolBar_USB_Icon_up = Properties.Resources._000_ToolBar_USB_Icon_up;
|
||||
public static Bitmap _000_TreeConnected_h32bit_16 = Properties.Resources._000_TreeConnected_h32bit_16;
|
||||
public static Bitmap _000_UpgradePool_h32bit_32 = Properties.Resources._000_UpgradePool_h32bit_32;
|
||||
public static Bitmap _000_User_h32bit_16 = Properties.Resources._000_User_h32bit_16;
|
||||
public static Bitmap _000_UserAndGroup_h32bit_16 = Properties.Resources._000_UserAndGroup_h32bit_16;
|
||||
public static Bitmap _000_UserAndGroup_h32bit_32 = Properties.Resources._000_UserAndGroup_h32bit_32;
|
||||
public static Bitmap _000_UserTemplate_h32bit_16 = Properties.Resources._000_UserTemplate_h32bit_16;
|
||||
public static Bitmap _000_ViewModeList_h32bit_16 = Properties.Resources._000_ViewModeList_h32bit_16;
|
||||
public static Bitmap _000_ViewModeTree_h32bit_16 = Properties.Resources._000_ViewModeTree_h32bit_16;
|
||||
public static Bitmap _000_VirtualAppliance_h32bit_16 = Properties.Resources._000_VirtualAppliance_h32bit_16;
|
||||
public static Bitmap _000_VirtualStorage_h32bit_16 = Properties.Resources._000_VirtualStorage_h32bit_16;
|
||||
public static Bitmap _000_VM_h32bit_16 = Properties.Resources._000_VM_h32bit_16;
|
||||
public static Bitmap _000_VM_h32bit_24 = Properties.Resources._000_VM_h32bit_24;
|
||||
public static Bitmap _000_VMDisabled_h32bit_16 = Properties.Resources._000_VMDisabled_h32bit_16;
|
||||
public static Bitmap _000_VMPausedDisabled_h32bit_16 = Properties.Resources._000_VMPausedDisabled_h32bit_16;
|
||||
public static Bitmap _000_VMSession_h32bit_16 = Properties.Resources._000_VMSession_h32bit_16;
|
||||
public static Bitmap _000_VMSnapshotDiskMemory_h32bit_16 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_16;
|
||||
public static Bitmap _000_VMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_32;
|
||||
public static Bitmap _000_VMSnapShotDiskOnly_h32bit_16 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_16;
|
||||
public static Bitmap _000_VMSnapShotDiskOnly_h32bit_32 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_32;
|
||||
public static Bitmap _000_VMStarting_h32bit_16 = Properties.Resources._000_VMStarting_h32bit_16;
|
||||
public static Bitmap _000_VMStartingDisabled_h32bit_16 = Properties.Resources._000_VMStartingDisabled_h32bit_16;
|
||||
public static Bitmap _000_VMStoppedDisabled_h32bit_16 = Properties.Resources._000_VMStoppedDisabled_h32bit_16;
|
||||
public static Bitmap _000_VMTemplate_h32bit_16 = Properties.Resources._000_VMTemplate_h32bit_16;
|
||||
public static Bitmap _000_WarningAlert_h32bit_32 = Properties.Resources._000_WarningAlert_h32bit_32;
|
||||
public static Bitmap _000_weighting_h32bit_16 = Properties.Resources._000_weighting_h32bit_16;
|
||||
public static Bitmap _000_XenCenterAlerts_h32bit_24 = Properties.Resources._000_XenCenterAlerts_h32bit_24;
|
||||
public static Bitmap _001_Back_h32bit_24 = Properties.Resources._001_Back_h32bit_24;
|
||||
public static Bitmap _001_CreateVM_h32bit_16 = Properties.Resources._001_CreateVM_h32bit_16;
|
||||
public static Bitmap _001_ForceReboot_h32bit_16 = Properties.Resources._001_ForceReboot_h32bit_16;
|
||||
public static Bitmap _001_ForceReboot_h32bit_24 = Properties.Resources._001_ForceReboot_h32bit_24;
|
||||
public static Bitmap _001_ForceShutDown_h32bit_16 = Properties.Resources._001_ForceShutDown_h32bit_16;
|
||||
public static Bitmap _001_ForceShutDown_h32bit_24 = Properties.Resources._001_ForceShutDown_h32bit_24;
|
||||
public static Bitmap _001_Forward_h32bit_24 = Properties.Resources._001_Forward_h32bit_24;
|
||||
public static Bitmap _001_LifeCycle_h32bit_24 = Properties.Resources._001_LifeCycle_h32bit_24;
|
||||
public static Bitmap _001_PerformanceGraph_h32bit_16 = Properties.Resources._001_PerformanceGraph_h32bit_16;
|
||||
public static Bitmap _001_Pin_h32bit_16 = Properties.Resources._001_Pin_h32bit_16;
|
||||
public static Bitmap _001_PowerOn_h32bit_16 = Properties.Resources._001_PowerOn_h32bit_16;
|
||||
public static Bitmap _001_PowerOn_h32bit_24 = Properties.Resources._001_PowerOn_h32bit_24;
|
||||
public static Bitmap _001_Reboot_h32bit_16 = Properties.Resources._001_Reboot_h32bit_16;
|
||||
public static Bitmap _001_Reboot_h32bit_24 = Properties.Resources._001_Reboot_h32bit_24;
|
||||
public static Bitmap _001_ShutDown_h32bit_16 = Properties.Resources._001_ShutDown_h32bit_16;
|
||||
public static Bitmap _001_ShutDown_h32bit_24 = Properties.Resources._001_ShutDown_h32bit_24;
|
||||
public static Bitmap _001_Tools_h32bit_16 = Properties.Resources._001_Tools_h32bit_16;
|
||||
public static Bitmap _001_WindowView_h32bit_16 = Properties.Resources._001_WindowView_h32bit_16;
|
||||
public static Bitmap _002_Configure_h32bit_16 = Properties.Resources._002_Configure_h32bit_16;
|
||||
public static Bitmap _015_Download_h32bit_32 = Properties.Resources._015_Download_h32bit_32;
|
||||
public static Bitmap _075_TickRound_h32bit_16 = Properties.Resources._075_TickRound_h32bit_16;
|
||||
public static Bitmap _075_WarningRound_h32bit_16 = Properties.Resources._075_WarningRound_h32bit_16;
|
||||
public static Bitmap _112_LeftArrowLong_Blue_24x24_72 = Properties.Resources._112_LeftArrowLong_Blue_24x24_72;
|
||||
public static Bitmap _112_RightArrowLong_Blue_24x24_72 = Properties.Resources._112_RightArrowLong_Blue_24x24_72;
|
||||
public static Bitmap about_box_graphic_423x79 = Properties.Resources.about_box_graphic_423x79;
|
||||
public static Bitmap ajax_loader = Properties.Resources.ajax_loader;
|
||||
public static Bitmap alert1_16 = Properties.Resources.alert1_16;
|
||||
public static Bitmap alert2_16 = Properties.Resources.alert2_16;
|
||||
public static Bitmap alert3_16 = Properties.Resources.alert3_16;
|
||||
public static Bitmap alert4_16 = Properties.Resources.alert4_16;
|
||||
public static Bitmap alert5_16 = Properties.Resources.alert5_16;
|
||||
public static Bitmap alert6_16 = Properties.Resources.alert6_16;
|
||||
public static Bitmap alerts_32 = Properties.Resources.alerts_32;
|
||||
public static Bitmap ascending_triangle = Properties.Resources.ascending_triangle;
|
||||
public static Bitmap asterisk = Properties.Resources.asterisk;
|
||||
public static Bitmap attach_24 = Properties.Resources.attach_24;
|
||||
public static Bitmap attach_virtualstorage_32 = Properties.Resources.attach_virtualstorage_32;
|
||||
public static Bitmap backup_restore_32 = Properties.Resources.backup_restore_32;
|
||||
public static Bitmap cancelled_action_16 = Properties.Resources.cancelled_action_16;
|
||||
public static Bitmap centos_16x = Properties.Resources.centos_16x;
|
||||
public static Bitmap change_password_16 = Properties.Resources.change_password_16;
|
||||
public static Bitmap change_password_32 = Properties.Resources.change_password_32;
|
||||
public static Bitmap clonevm_16 = Properties.Resources.clonevm_16;
|
||||
public static Bitmap close_16 = Properties.Resources.close_16;
|
||||
public static Bitmap commands_16 = Properties.Resources.commands_16;
|
||||
public static Bitmap console_16 = Properties.Resources.console_16;
|
||||
public static Bitmap contracted_triangle = Properties.Resources.contracted_triangle;
|
||||
public static Bitmap copy_16 = Properties.Resources.copy_16;
|
||||
public static Bitmap coreos_16 = Properties.Resources.coreos_16;
|
||||
public static Bitmap coreos_globe_icon = Properties.Resources.coreos_globe_icon;
|
||||
public static Bitmap cross = Properties.Resources.cross;
|
||||
public static Bitmap DateTime16 = Properties.Resources.DateTime16;
|
||||
public static Bitmap DC_16 = Properties.Resources.DC_16;
|
||||
public static Bitmap debian_16x = Properties.Resources.debian_16x;
|
||||
public static Bitmap descending_triangle = Properties.Resources.descending_triangle;
|
||||
public static Bitmap desktop = Properties.Resources.desktop;
|
||||
public static Bitmap detach_24 = Properties.Resources.detach_24;
|
||||
public static Bitmap edit_16 = Properties.Resources.edit_16;
|
||||
public static Bitmap expanded_triangle = Properties.Resources.expanded_triangle;
|
||||
public static Bitmap export_32 = Properties.Resources.export_32;
|
||||
public static Bitmap folder_grey = Properties.Resources.folder_grey;
|
||||
public static Bitmap folder_separator = Properties.Resources.folder_separator;
|
||||
public static Bitmap grab = Properties.Resources.grab;
|
||||
public static Bitmap grapharea = Properties.Resources.grapharea;
|
||||
public static Bitmap graphline = Properties.Resources.graphline;
|
||||
public static Bitmap gripper = Properties.Resources.gripper;
|
||||
public static Bitmap ha_16 = Properties.Resources.ha_16;
|
||||
public static Bitmap help_16_hover = Properties.Resources.help_16_hover;
|
||||
public static Bitmap help_24 = Properties.Resources.help_24;
|
||||
public static Bitmap help_24_hover = Properties.Resources.help_24_hover;
|
||||
public static Bitmap help_32_hover = Properties.Resources.help_32_hover;
|
||||
public static Bitmap homepage_bullet = Properties.Resources.homepage_bullet;
|
||||
public static Bitmap import_32 = Properties.Resources.import_32;
|
||||
public static Bitmap infra_view_16 = Properties.Resources.infra_view_16;
|
||||
public static Bitmap infra_view_16_textured = Properties.Resources.infra_view_16_textured;
|
||||
public static Bitmap infra_view_24 = Properties.Resources.infra_view_24;
|
||||
public static Bitmap licensekey_32 = Properties.Resources.licensekey_32;
|
||||
public static Bitmap lifecycle_hot = Properties.Resources.lifecycle_hot;
|
||||
public static Bitmap lifecycle_pressed = Properties.Resources.lifecycle_pressed;
|
||||
public static Bitmap log_destination_16 = Properties.Resources.log_destination_16;
|
||||
public static Bitmap Logo = Properties.Resources.Logo;
|
||||
public static Bitmap memory_dynmax_slider = Properties.Resources.memory_dynmax_slider;
|
||||
public static Bitmap memory_dynmax_slider_dark = Properties.Resources.memory_dynmax_slider_dark;
|
||||
public static Bitmap memory_dynmax_slider_light = Properties.Resources.memory_dynmax_slider_light;
|
||||
public static Bitmap memory_dynmax_slider_noedit = Properties.Resources.memory_dynmax_slider_noedit;
|
||||
public static Bitmap memory_dynmax_slider_noedit_small = Properties.Resources.memory_dynmax_slider_noedit_small;
|
||||
public static Bitmap memory_dynmax_slider_small = Properties.Resources.memory_dynmax_slider_small;
|
||||
public static Bitmap memory_dynmin_slider = Properties.Resources.memory_dynmin_slider;
|
||||
public static Bitmap memory_dynmin_slider_dark = Properties.Resources.memory_dynmin_slider_dark;
|
||||
public static Bitmap memory_dynmin_slider_light = Properties.Resources.memory_dynmin_slider_light;
|
||||
public static Bitmap memory_dynmin_slider_noedit = Properties.Resources.memory_dynmin_slider_noedit;
|
||||
public static Bitmap memory_dynmin_slider_noedit_small = Properties.Resources.memory_dynmin_slider_noedit_small;
|
||||
public static Bitmap memory_dynmin_slider_small = Properties.Resources.memory_dynmin_slider_small;
|
||||
public static Bitmap minus = Properties.Resources.minus;
|
||||
public static Bitmap more_16 = Properties.Resources.more_16;
|
||||
public static Bitmap neokylin_16x = Properties.Resources.neokylin_16x;
|
||||
public static Bitmap notif_alerts_16 = Properties.Resources.notif_alerts_16;
|
||||
public static Bitmap notif_events_16 = Properties.Resources.notif_events_16;
|
||||
public static Bitmap notif_events_errors_16 = Properties.Resources.notif_events_errors_16;
|
||||
public static Bitmap notif_none_16 = Properties.Resources.notif_none_16;
|
||||
public static Bitmap notif_none_24 = Properties.Resources.notif_none_24;
|
||||
public static Bitmap notif_updates_16 = Properties.Resources.notif_updates_16;
|
||||
public static Bitmap objects_16 = Properties.Resources.objects_16;
|
||||
public static Bitmap objects_16_textured = Properties.Resources.objects_16_textured;
|
||||
public static Bitmap objects_24 = Properties.Resources.objects_24;
|
||||
public static Bitmap oracle_16x = Properties.Resources.oracle_16x;
|
||||
public static Bitmap org_view_16 = Properties.Resources.org_view_16;
|
||||
public static Bitmap org_view_24 = Properties.Resources.org_view_24;
|
||||
public static Bitmap padlock = Properties.Resources.padlock;
|
||||
public static Bitmap paste_16 = Properties.Resources.paste_16;
|
||||
public static Bitmap PausedDC_16 = Properties.Resources.PausedDC_16;
|
||||
public static Bitmap PDChevronDown = Properties.Resources.PDChevronDown;
|
||||
public static Bitmap PDChevronDownOver = Properties.Resources.PDChevronDownOver;
|
||||
public static Bitmap PDChevronLeft = Properties.Resources.PDChevronLeft;
|
||||
public static Bitmap PDChevronRight = Properties.Resources.PDChevronRight;
|
||||
public static Bitmap PDChevronUp = Properties.Resources.PDChevronUp;
|
||||
public static Bitmap PDChevronUpOver = Properties.Resources.PDChevronUpOver;
|
||||
public static Bitmap pool_up_16 = Properties.Resources.pool_up_16;
|
||||
public static Bitmap redhat_16x = Properties.Resources.redhat_16x;
|
||||
public static Bitmap Refresh16 = Properties.Resources.Refresh16;
|
||||
public static Bitmap RunningDC_16 = Properties.Resources.RunningDC_16;
|
||||
public static Bitmap saved_searches_16 = Properties.Resources.saved_searches_16;
|
||||
public static Bitmap saved_searches_24 = Properties.Resources.saved_searches_24;
|
||||
public static Bitmap scilinux_16x = Properties.Resources.scilinux_16x;
|
||||
public static Bitmap server_up_16 = Properties.Resources.server_up_16;
|
||||
public static Bitmap sl_16 = Properties.Resources.sl_16;
|
||||
public static Bitmap sl_add_storage_system_16 = Properties.Resources.sl_add_storage_system_16;
|
||||
public static Bitmap sl_add_storage_system_32 = Properties.Resources.sl_add_storage_system_32;
|
||||
public static Bitmap sl_add_storage_system_small_16 = Properties.Resources.sl_add_storage_system_small_16;
|
||||
public static Bitmap sl_connected_16 = Properties.Resources.sl_connected_16;
|
||||
public static Bitmap sl_connecting_16 = Properties.Resources.sl_connecting_16;
|
||||
public static Bitmap sl_disconnected_16 = Properties.Resources.sl_disconnected_16;
|
||||
public static Bitmap sl_lun_16 = Properties.Resources.sl_lun_16;
|
||||
public static Bitmap sl_luns_16 = Properties.Resources.sl_luns_16;
|
||||
public static Bitmap sl_pool_16 = Properties.Resources.sl_pool_16;
|
||||
public static Bitmap sl_pools_16 = Properties.Resources.sl_pools_16;
|
||||
public static Bitmap sl_system_16 = Properties.Resources.sl_system_16;
|
||||
public static Bitmap SpinningFrame0 = Properties.Resources.SpinningFrame0;
|
||||
public static Bitmap SpinningFrame1 = Properties.Resources.SpinningFrame1;
|
||||
public static Bitmap SpinningFrame2 = Properties.Resources.SpinningFrame2;
|
||||
public static Bitmap SpinningFrame3 = Properties.Resources.SpinningFrame3;
|
||||
public static Bitmap SpinningFrame4 = Properties.Resources.SpinningFrame4;
|
||||
public static Bitmap SpinningFrame5 = Properties.Resources.SpinningFrame5;
|
||||
public static Bitmap SpinningFrame6 = Properties.Resources.SpinningFrame6;
|
||||
public static Bitmap SpinningFrame7 = Properties.Resources.SpinningFrame7;
|
||||
public static Bitmap StoppedDC_16 = Properties.Resources.StoppedDC_16;
|
||||
public static Bitmap subscribe = Properties.Resources.subscribe;
|
||||
public static Bitmap suse_16x = Properties.Resources.suse_16x;
|
||||
public static Bitmap tools_notinstalled_16x = Properties.Resources.tools_notinstalled_16x;
|
||||
public static Bitmap tools_outofdate_16x = Properties.Resources.tools_outofdate_16x;
|
||||
public static Bitmap tools_uptodate_16x = Properties.Resources.tools_uptodate_16x;
|
||||
public static Bitmap tree_minus = Properties.Resources.tree_minus;
|
||||
public static Bitmap tree_plus = Properties.Resources.tree_plus;
|
||||
public static Bitmap tshadowdown = Properties.Resources.tshadowdown;
|
||||
public static Bitmap tshadowdownleft = Properties.Resources.tshadowdownleft;
|
||||
public static Bitmap tshadowdownright = Properties.Resources.tshadowdownright;
|
||||
public static Bitmap tshadowright = Properties.Resources.tshadowright;
|
||||
public static Bitmap tshadowtopright = Properties.Resources.tshadowtopright;
|
||||
public static Bitmap ubuntu_16x = Properties.Resources.ubuntu_16x;
|
||||
public static Bitmap upsell_16 = Properties.Resources.upsell_16;
|
||||
public static Bitmap usagebar_0 = Properties.Resources.usagebar_0;
|
||||
public static Bitmap usagebar_1 = Properties.Resources.usagebar_1;
|
||||
public static Bitmap usagebar_10 = Properties.Resources.usagebar_10;
|
||||
public static Bitmap usagebar_2 = Properties.Resources.usagebar_2;
|
||||
public static Bitmap usagebar_3 = Properties.Resources.usagebar_3;
|
||||
public static Bitmap usagebar_4 = Properties.Resources.usagebar_4;
|
||||
public static Bitmap usagebar_5 = Properties.Resources.usagebar_5;
|
||||
public static Bitmap usagebar_6 = Properties.Resources.usagebar_6;
|
||||
public static Bitmap usagebar_7 = Properties.Resources.usagebar_7;
|
||||
public static Bitmap usagebar_8 = Properties.Resources.usagebar_8;
|
||||
public static Bitmap usagebar_9 = Properties.Resources.usagebar_9;
|
||||
public static Bitmap virtualstorage_snapshot_16 = Properties.Resources.virtualstorage_snapshot_16;
|
||||
public static Bitmap vmBackground = Properties.Resources.vmBackground;
|
||||
public static Bitmap vmBackgroundCurrent = Properties.Resources.vmBackgroundCurrent;
|
||||
public static Bitmap VMTemplate_h32bit_32 = Properties.Resources.VMTemplate_h32bit_32;
|
||||
public static Bitmap vnc_local_cursor = Properties.Resources.vnc_local_cursor;
|
||||
public static Bitmap windows_h32bit_16 = Properties.Resources.windows_h32bit_16;
|
||||
public static Bitmap wizard_background = Properties.Resources.wizard_background;
|
||||
public static Bitmap WLB = Properties.Resources.WLB;
|
||||
public static Bitmap XS = Properties.Resources.XS;
|
||||
public static Bitmap xcm = Properties.Resources.xcm;
|
||||
public static Bitmap xcm_32x32 = Properties.Resources.xcm_32x32;
|
||||
public static Bitmap queued = Properties.Resources.queued;
|
||||
public static Bitmap _000_User_h32bit_32 = Properties.Resources._000_User_h32bit_32;
|
||||
public static Bitmap asianux_16x = Properties.Resources.asianux_16x;
|
||||
public static Bitmap gooroom_16x = Properties.Resources.gooroom_16x;
|
||||
public static Bitmap linx_16x = Properties.Resources.linx_16x;
|
||||
public static Bitmap turbo_16x = Properties.Resources.turbo_16x;
|
||||
public static Bitmap usb_16 = Properties.Resources.usb_16;
|
||||
public static Bitmap yinhekylin_16x = Properties.Resources.yinhekylin_16x;
|
||||
}
|
||||
}
|
||||
}
|
@ -61,7 +61,7 @@ namespace XenAdmin.Wizards.ConversionWizard
|
||||
public ConversionWizard(ConversionClient client)
|
||||
: base(client.Connection)
|
||||
{
|
||||
pictureBoxWizard.Image = Images.StaticImages.ConversionManager_32;
|
||||
pictureBoxWizard.Image = Images.StaticImages.xcm_32x32;
|
||||
|
||||
_conversionClient = client;
|
||||
|
||||
|
@ -29,10 +29,12 @@
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
using System.Collections;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Drawing;
|
||||
using System.Reflection;
|
||||
using NUnit.Framework;
|
||||
|
||||
@ -42,6 +44,34 @@ namespace XenAdminTests.CodeTests
|
||||
[TestFixture, Category(TestCategories.Unit)]
|
||||
public class AssemblyTests
|
||||
{
|
||||
[Test]
|
||||
[Description("Checks that there are no Bitmaps in XenAdmin.Resources" +
|
||||
"without a counterpart in XenAdmin.Images.StaticImages")]
|
||||
public void TestEnsureStaticImages()
|
||||
{
|
||||
var manager = new System.Resources.ResourceManager("XenAdmin.Properties.Resources",
|
||||
typeof(XenAdmin.Properties.Resources).Assembly);
|
||||
|
||||
var images = manager.GetResourceSet(CultureInfo.CurrentCulture, true, true)
|
||||
.Cast<DictionaryEntry>().Where(e => e.Value is Bitmap).ToList();
|
||||
|
||||
var staticImages = typeof(XenAdmin.Images.StaticImages).GetFields()
|
||||
.Where(f => f.IsStatic && f.FieldType == typeof(Bitmap)).ToList();
|
||||
|
||||
var extraImages = (from DictionaryEntry e in images
|
||||
let key = e.Key as string
|
||||
where !staticImages.Exists(s => s.Name == key)
|
||||
select key).ToList();
|
||||
|
||||
var extraStatics = (from FieldInfo s in staticImages
|
||||
where !images.Exists(i => s.Name == (string)i.Key)
|
||||
select s.Name).ToList();
|
||||
|
||||
Assert.True(extraStatics.Count == 0 && extraImages.Count == 0,
|
||||
$"Orphaned static images: {string.Join(", ", extraStatics)}\n" +
|
||||
$"Resources without a static counterpart: {string.Join(", ", extraImages)}");
|
||||
}
|
||||
|
||||
[Test, Combinatorial]
|
||||
[Description("Checks all resx files in the project have their i18n counterparts in place")]
|
||||
public void TestEnsureI18NFilesInPlace(
|
||||
|
@ -169,6 +169,8 @@ namespace XenAdmin
|
||||
|
||||
#endregion
|
||||
|
||||
Usb16,
|
||||
|
||||
#region Status Icons
|
||||
Ok,
|
||||
Info,
|
||||
|
Loading…
Reference in New Issue
Block a user