Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AvailableDPTree"/> class.
 /// </summary>
 /// <param name="pParent">The parent CommonBusControl.</param>
 /// <param name="pOKCnacelForm">The reference to parent form with interface ICanBeAccepted.</param>
 public AvailableDPTree(CommonBusControl pParent, ICanBeAccepted pOKCnacelForm)
     : this()
 {
     m_OKCnacelForm = pOKCnacelForm;
     //m_OKCnacelForm.SetUserControl = this;
     m_PluginCollection = new PluginCollection(pParent);
     FillTree(m_PluginCollection);
 }
Exemple #2
0
 internal AddNode(ICanBeAccepted parent, INodeFactory[] list) : this()
 {
     m_listBox.Items.AddRange(list);
     m_Parent = parent;
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AvailableDPTree"/> class.
 /// </summary>
 /// <param name="pParent">The parent CommonBusControl.</param>
 /// <param name="pOKCnacelForm">The reference to parent form with interface ICanBeAccepted.</param>
 /// <param name="pSetting">The settings.</param>
 /// <param name="pGuid">The GUID.</param>
 public AvailableDPTree(CommonBusControl pParent, ICanBeAccepted pOKCnacelForm, string pSetting, Guid pGuid)
     :
     this(pParent, pOKCnacelForm)
 {
     m_PluginCollection.SetDefaultSsetting(pSetting, pGuid);
 }