Removed un-needed and un-used RequestStop override from Scenario

This commit is contained in:
Tig
2024-03-25 14:18:43 -06:00
parent 5c6560299b
commit 561d671746
6 changed files with 11 additions and 15 deletions

View File

@@ -6,9 +6,11 @@
using System;
using Terminal.Gui;
Application.Run<ExampleWindow> ();
var app = Application.Run<ExampleWindow> ();
Console.WriteLine ($"Username: {((ExampleWindow)Application.Top).UserNameText.Text}");
Console.WriteLine ($"Username: {app.UserNameText.Text}");
app.Dispose ();
// Before the application exits, reset Terminal.Gui for clean shutdown
Application.Shutdown ();