Last active
December 2, 2021 18:02
-
-
Save Nicky5/4c1e349e4e1fc1666b8ef5dfa21dcd8c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright © 2021 Elia Vandini aka. VANDINIIIIIIIII | |
Permission is hereby NOT granted, to noone person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. DO NOT USE THIS PROGRAM I WILL NOT BE HELD RESPONSIBLE FOR ANYTHING IF SOMETHING HAPPENS. THANK YOU | |
btw plagiarism is a crime | |
*/ | |
namespace CSharpTest | |
{ | |
internal static class Program | |
{ | |
/** | |
This is just a very crude example but what is doeas is display 5 buttons. | |
the first four print a string to console while the last exits the program using the built in method | |
Preview: | |
Use arrow keys to navigate. Enter or space to press a button | |
╭────────────────╮ | |
│ Title1 │ | |
│ │ | |
│ SubTitle2 │ | |
├────────────────┤ | |
│ Title2 │ | |
│ │ | |
│ SubTitle2 │ | |
├────────────────┤ | |
│ Title3 │ | |
│ │ | |
│ SubTitle3 │ | |
├────────────────┤ | |
│ Title4 │ | |
│ │ | |
│ SubTitle4 │ | |
┢━━━━━━━━━━━━━━━━┪ | |
┃ Quit ┃ | |
┃ ┃ | |
┃ Quit ┃ | |
┗━━━━━━━━━━━━━━━━┛ | |
**/ | |
public static void Main(string[] args) | |
{ | |
ButtonInit(); | |
} | |
public static void ButtonInit() | |
{ | |
Button[] buttons = new Button[] { | |
new Button(Program.buttonEvent0, "Title1", "SubTitle2"), | |
new Button(Program.buttonEvent1, "Title2", "SubTitle2"), | |
new Button(Program.buttonEvent2, "Title3", "SubTitle3"), | |
new Button(Program.buttonEvent3, "Title4", "SubTitle4"), | |
new Button(ButtonMenu.ProgramStop, "Quit", "Quit") | |
}; | |
ButtonMenu buttonMenu = new ButtonMenu(buttons); | |
buttonMenu.StartLoop(); | |
} | |
public static void buttonEvent0() | |
{ | |
Console.WriteLine("Button 0 has successfully been pressed uwu"); | |
} | |
public static void buttonEvent1() | |
{ | |
Console.WriteLine("Button 1 has successfully been pressed uwu"); | |
} | |
public static void buttonEvent2() | |
{ | |
Console.WriteLine("Button 2 has successfully been pressed uwu"); | |
} | |
public static void buttonEvent3() | |
{ | |
Console.WriteLine("Button 3 has successfully been pressed uwu"); | |
} | |
public static void buttonEvent4() | |
{ | |
Console.WriteLine("Button 4 has successfully been pressed uwu"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment