コード例 #1
0
 public static void Show()
 {
     ConsoleMenu.Show
     (
         "Mot de passe", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
コード例 #2
0
 static void Show()
 {
     // ConsoleMenu.ExitChar = 'Z';
     ConsoleMenu.Show
     (
         "Arbre Binaire", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
コード例 #3
0
 public static void Show()
 {
     ConsoleMenu.Show
     (
         $"Arbre Binaire --- {Program.Nom}", Green, Black, Red, Magenta, null, null
         , MenuItems.ToArray()
     );;
 }
コード例 #4
0
 static void Show()
 {
     // ConsoleMenu.ExitChar = 'Z';
     ConsoleMenu.Show
     (
         "Algorithmes", Yellow, Black, Red, MenuItems.ToArray()
     );
 }
コード例 #5
0
ファイル: MenuArbres.cs プロジェクト: olga-czc/3A4_ArbreBin
        public static void Show(bool avecBenchmark, params int[] statLevels)
        {
            NoBenchmark = !avecBenchmark;
            StatLevels  = statLevels;

            ConsoleMenu.Show
            (
                $"{ConsoleMenu.CurrentMenuSelectionTitle} --- {Program.Nom}"
                , Green, Black, Red, Magenta, null, null
                , MenuItems.ToArray()
            );
        }