12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // This is a simple example application. For the full range of functionality
- // see the UICatalog project
- // A simple Terminal.Gui example in C# - using C# 9.0 Top-level statements
- using System;
- using Terminal.Gui;
- var app = Application.Run<ExampleWindow> ();
- Console.WriteLine ($"Username: {app.UserNameText.Text}");
- app.Dispose ();
- // Before the application exits, reset Terminal.Gui for clean shutdown
- Application.Shutdown ();
- // Defines a top-level window with border and title
- public class ExampleWindow : Window
- {
- public TextField UserNameText;
- public ExampleWindow ()
- {
- Title = $"Example App ({Application.QuitKey} to quit)";
- // Create input components and labels
- var usernameLabel = new Label { Text = "Username:" };
- UserNameText = new TextField
- {
- // Position text field adjacent to the label
- X = Pos.Right (usernameLabel) + 1,
- // Fill remaining horizontal space
- Width = Dim.Fill ()
- };
- var passwordLabel = new Label
- {
- Text = "Password:", X = Pos.Left (usernameLabel), Y = Pos.Bottom (usernameLabel) + 1
- };
- var passwordText = new TextField
- {
- Secret = true,
- // align with the text box above
- X = Pos.Left (UserNameText),
- Y = Pos.Top (passwordLabel),
- Width = Dim.Fill ()
- };
- // Create login button
- var btnLogin = new Button
- {
- Text = "Login",
- Y = Pos.Bottom (passwordLabel) + 1,
- // center the login button horizontally
- X = Pos.Center (),
- IsDefault = true
- };
- // When login button is clicked display a message popup
- btnLogin.Accept += (s, e) =>
- {
- if (UserNameText.Text == "admin" && passwordText.Text == "password")
- {
- MessageBox.Query ("Logging In", "Login Successful", "Ok");
- Application.RequestStop ();
- }
- else
- {
- MessageBox.ErrorQuery ("Logging In", "Incorrect username or password", "Ok");
- }
- };
- // Add the views to the Window
- Add (usernameLabel, UserNameText, passwordLabel, passwordText, btnLogin);
- }
- }
|