Exemplo n.º 1
0
 /// <summary>
 /// Add and show the inbox user control.
 /// </summary>
 private void AddInboxWuc()
 {
     inboxW = new wuc.wuc_inbox(srv, login, contacts);
       Controls.Add(inboxW);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Hide and dispose of the inbodx user control.
 /// </summary>
 private void RemoveInboxWuc()
 {
     Controls.Remove(inboxW);
       inboxW.Dispose();
       inboxW = null;
 }