Ejemplo n.º 1
0
 public cNodeTag(cMailbox pMailbox, TreeNode pPleaseWait)
 {
     Namespace        = null;
     Mailbox          = pMailbox ?? throw new ArgumentNullException(nameof(pMailbox));
     MailboxContainer = pMailbox;
     CanSelect        = pMailbox.CanSelect;
     PleaseWait       = pPleaseWait;
 }
Ejemplo n.º 2
0
 public cNodeTag(cNamespace pNamespace, TreeNode pPleaseWait)
 {
     Namespace        = pNamespace ?? throw new ArgumentNullException(nameof(pNamespace));
     Mailbox          = null;
     MailboxContainer = pNamespace;
     CanSelect        = false;
     PleaseWait       = pPleaseWait;
 }
Ejemplo n.º 3
0
 public cNodeTag(cMailbox pMailbox, TreeNode pPleaseWait)
 {
     Namespace        = null;
     Mailbox          = pMailbox ?? throw new ArgumentNullException(nameof(pMailbox));
     MailboxContainer = pMailbox;
     CanSelect        = pMailbox.CanSelect;
     PleaseWait       = pPleaseWait;
     if (pPleaseWait == null)
     {
         State = eState.expanded;
     }
     else
     {
         State = eState.neverexpanded;
     }
 }
Ejemplo n.º 4
0
 public cNodeTag(cNamespace pNamespace, TreeNode pPleaseWait)
 {
     Namespace        = pNamespace ?? throw new ArgumentNullException(nameof(pNamespace));
     Mailbox          = null;
     MailboxContainer = pNamespace;
     CanSelect        = false;
     PleaseWait       = pPleaseWait;
     if (pPleaseWait == null)
     {
         State = eState.expanded;
     }
     else
     {
         State = eState.neverexpanded;
     }
 }