Exemplo n.º 1
0
        public IPanel <Form> Create([NotNull] IActionDefinition action)
        {
            var result = new PropertySchemaListPanel();

            if (_actions != null)
            {
                result.SetContextAwareActions(_actions);
            }
            return(result);
        }
Exemplo n.º 2
0
        public IPanel <Form> Create(IIdentity identity, out IActionDefinition action)
        {
            var result = new PropertySchemaListPanel();

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

            action = new ActionDefinition(result.Id, "PropertySchemaList", "Property Schema\nList", Properties.Resources.properties_big,
                                          Properties.Resources.properties);

            return(result);
        }