public override void Execute(IActionContext context) { SendResourcesDialog dlg = new SendResourcesDialog(context.SelectedResources); dlg.ShowDialog(); dlg.Dispose(); }
public override void Execute(IActionContext context) { IResource res = context.SelectedResources[0]; res = res.GetLinkProp(Core.ContactManager.Props.LinkBaseContact); SendResourcesDialog dlg = new SendResourcesDialog(res.ToResourceList()); dlg.ShowDialog(); dlg.Dispose(); }