xenadmin/XenAdmin/Commands/CallHomeCommand.cs

32 lines
965 B
C#
Raw Normal View History

using System.Linq;
using XenAdmin.Dialogs.CallHome;
namespace XenAdmin.Commands
{
internal class CallHomeCommand : Command
{
/// <summary>
/// Initializes a new instance of this Command. The parameter-less constructor is required if
/// this Command is to be attached to a ToolStrip menu item or button. It should not be used in any other scenario.
/// </summary>
public CallHomeCommand()
{
}
public CallHomeCommand(IMainWindow mainWindow)
: base(mainWindow)
{
}
protected override void ExecuteCore(SelectedItemCollection selection)
{
MainWindowCommandInterface.ShowForm(typeof(CallHomeOverviewDialog));
}
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return ConnectionsManager.XenConnectionsCopy.Any(xenConnection => xenConnection.IsConnected);
}
}
}