Ejemplo n.º 1
0
        public void addUC(OwnedUserControl uc)
        {
            uc.Owner = this;

            if (!stackUC.Count.Equals(0))
            {
                stackUC[stackUC.Count - 1].Visible = false;
            }
            stackUC.Add(uc);
            uc.Visible = true;
        }
Ejemplo n.º 2
0
 public void changeUC(OwnedUserControl uc)
 {
     popUC();
     addUC(uc);
 }