本文整理汇总了C#中SelectedItemCollection.ContainsOneItemOfType方法的典型用法代码示例。如果您正苦于以下问题:C# SelectedItemCollection.ContainsOneItemOfType方法的具体用法?C# SelectedItemCollection.ContainsOneItemOfType怎么用?C# SelectedItemCollection.ContainsOneItemOfType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SelectedItemCollection
的用法示例。
在下文中一共展示了SelectedItemCollection.ContainsOneItemOfType方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
if (selection.ContainsOneItemOfType<IXenObject>())
{
IXenObject xenObject = selection[0].XenObject;
return !(xenObject is Folder) && xenObject.Connection != null && xenObject.Connection.IsConnected;
}
return false;
}
示例2: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
if (_slr != null && selection.ContainsOneItemOfType<VDI>())
{
VDI vdi = (VDI)selection[0].XenObject;
var deleteCommand = new DeleteVirtualDiskCommand(MainWindowCommandInterface, vdi);
return vdi.sm_config.ContainsKey("SVID") && !string.IsNullOrEmpty(vdi.sm_config["SVID"]) && deleteCommand.CanExecute();
}
return false;
}
示例3: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
if (!_owner.Enabled)
{
return false;
}
if (_search == null)
{
return true;
}
if (selection.ContainsOneItemOfType<IXenObject>())
{
return _search.Query.Match(selection[0].XenObject);
}
return false;
}
示例4: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<Host>() && selection.AtLeastOneXenObjectCan<Host>(CanExecute);
}
示例5: IsValid
public override bool IsValid(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<Folder>();
}
示例6: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<VM>() && selection.AtLeastOneXenObjectCan<VM>(v => v.is_a_snapshot);
}
示例7: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return (selection.ContainsOneItemOfType<Folder>()
|| selection.ContainsOneItemOfType<GroupingTag>(t => t.Grouping is OrganizationViewFolders))
&& ConnectionAvailable();
}
示例8: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<Folder>(CanExecute);
}
示例9: IsValid
public override bool IsValid(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<XenAPI.Network>() &&
!(selection.FirstAsXenObject as XenAPI.Network).IsGuestInstallerNetwork;
// CA-218956 - Expose HIMN when showing hidden objects
// HIMN should not be editable
}
示例10: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<SR>(sr => sr.StorageLinkRepository(Program.StorageLinkConnections) != null) ||
selection.ContainsOneItemOfType<StorageLinkRepository>();
}
示例11: CanExecuteCore
protected override bool CanExecuteCore(SelectedItemCollection selection)
{
return selection.ContainsOneItemOfType<Folder>() && ConnectionAvailable();
}