public IPanel <Form> Create([NotNull] IActionDefinition action)
        {
            var result = new TrustBoundaryList.TrustBoundaryListPanel();

            if (_actions != null)
            {
                result.SetContextAwareActions(_actions);
            }
            return(result);
        }
        public IPanel <Form> Create(IIdentity identity, out IActionDefinition action)
        {
            var result = new TrustBoundaryList.TrustBoundaryListPanel();

            if (_actions != null)
            {
                result.SetContextAwareActions(_actions);
            }

            action = new ActionDefinition(result.Id, "TrustBoundaryList", "Trust Boundary\nList", Resources.trust_boundary_big,
                                          Resources.trust_boundary);

            return(result);
        }