コード例 #1
0
 protected override void BeforeRun()
 {
     Console.Clear();
     Bootscreen.Show("AIC Demo!", Bootscreen.Effect.Matrix, ConsoleColor.Green, 3);
     Console.Clear();
     menu.Reset();
 }
コード例 #2
0
 public static void ShowBootscreen(
     string OSname,
     Bootscreen.Effect efx,
     ConsoleColor color,
     int ticks = 10000000
     )
 {
     Bootscreen.Show(OSname, efx, color, ticks);
 }
コード例 #3
0
 public static void ShowBootscreen(this Cosmos.System.Kernel krnl, string OSname, Bootscreen.Effect efx,
                                   ConsoleColor color, int ticks = 10000000)
 {
     Bootscreen.Show(OSname, efx, color, ticks);
 }
コード例 #4
0
 public override void Execute()
 {
     Bootscreen.Show("AIC Demo!", Bootscreen.Effect.Matrix, ConsoleColor.Green, 2);
     Console.Clear();
 }
コード例 #5
0
 public override void Execute()
 {
     Bootscreen.Show("AIC Demo!", Bootscreen.Effect.SlideFromLeft, ConsoleColor.Green, 1);
     Console.Clear();
 }
コード例 #6
0
 protected override void BeforeRun()
 {
     Bootscreen.Show("Welcome to the AIC Framework test project!", Bootscreen.Effect.Matrix, ConsoleColor.Green, 5);
     Console.Clear();
     menu.Reset();
 }