Exemplo n.º 1
0
 /// <summary>
 /// Overview for all the movables
 /// </summary>
 private void _fillMoveAbleTB()
 {
     guestTB.Clear();
     guestTB.Text = "Moveable: \tPosition: \t\tStatus \n";
     foreach (string value in Hotel.CurrentValue())
     {
         try
         {
             guestTB.AppendText(value);
         }
         catch (Exception e)
         {
             Debug.WriteLine(e.Message);
         }
     }
 }