Exemplo n.º 1
0
        protected override void OnLoad(EventArgs e)
        {
            NumCopies.Focus();
            NumCopies.Select(0, NumCopies.Text.Length);

            base.OnLoad(e);
        }
Exemplo n.º 2
0
 public override List <string> Display(bool test)
 {
     return(new List <string>()
     {
         _director, _title, NumCopies.ToString(), _playTime.ToString()
     });
 }
Exemplo n.º 3
0
 public override List <string> Display(bool test)
 {
     return(new List <string>()
     {
         _author, _title, NumCopies.ToString()
     });
 }
Exemplo n.º 4
0
 public override List <string> Display()
 {
     return(new List <string>()
     {
         "\nBook ------ ",
         " Author: " + _author,
         " Title: " + _title,
         " # Copies: " + NumCopies.ToString()
     });
 }