示例#1
0
 // function main
 public static void SuaHangHoa(ref ArrayList ArrayHH, ref ArrayList ArrayLH)
 {
     //---back main
     Console.ForegroundColor = ConsoleColor.White;
     Console.BackgroundColor = ConsoleColor.DarkYellow;
     Console.ForegroundColor = ConsoleColor.White;
     Console.BackgroundColor = ConsoleColor.DarkYellow;
     Console.CursorTop       = 0;
     Console.CursorLeft      = 18;
     Console.WriteLine(" Lựa chọn [UP/DOWN] ");
     Console.CursorTop  = 0;
     Console.CursorLeft = 40;
     Console.WriteLine(" Select [ENTER] ");
     Console.CursorTop  = 0;
     Console.CursorLeft = 58;
     Console.WriteLine(" Home [ESC] ");
     Console.ForegroundColor = ConsoleColor.Black;
     Console.BackgroundColor = ConsoleColor.Gray;
     if (ArrayHH.Count == 0)
     {
         Console.Clear();
         Console.WriteLine("Kho hàng hóa của bạn đang trống.");
     }
     else
     {
         Show.HienThiHangHoa(ref ArrayHH, ref ArrayLH, "Edit HH");
     }
 }
示例#2
0
 public static void KhoHang(ref ArrayList ArrayHH, ref ArrayList ArrayLH)
 {
     Show.HienThiHangHoa(ref ArrayHH, ref ArrayLH, "");
 }