Esempio n. 1
0
        public CustomPropertyGroup(IPlugIn plugin)
        {
            IChoicePool.DefaultChoicePoolChanged += IChoicePool_DefaultChoicePoolChanged;

            _PlugIn     = plugin;
            _properties = new CustomPropertyCollection();

            _ChoicePool         = IChoicePool.DefaultChoicePool;
            isDefaultChoicePool = true;
        }
Esempio n. 2
0
 public CustomPropertyGroup(IPlugIn plugin, Guid choicePoolId) : this(plugin)
 {
     _ChoicePool         = IChoicePool.GetChoicePoolById(choicePoolId);
     isDefaultChoicePool = false;
 }
Esempio n. 3
0
 public CustomPropertyGroup(IPlugIn plugin, IChoicePool choicePool) : this(plugin)
 {
     _ChoicePool         = choicePool;
     isDefaultChoicePool = false;
 }