|
@@ -45,7 +45,7 @@ namespace UICatalog;
|
|
|
/// </para>
|
|
|
/// <para>
|
|
|
/// The UI Catalog program uses reflection to find all scenarios and adds them to the ListViews. Press ENTER to
|
|
|
-/// run the selected scenario. Press the default quit key to quit. /
|
|
|
+/// run the selected scenario. Press the default quit key to quit.
|
|
|
/// </para>
|
|
|
/// </summary>
|
|
|
/// <example>
|
|
@@ -141,7 +141,7 @@ public class Scenario : IDisposable
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Helper that provides the default <see cref="Terminal.Gui.Window"/> implementation with a frame and label
|
|
|
+ /// Helper that calls <see cref="Application.Init"/> and creates the default <see cref="Terminal.Gui.Window"/> implementation with a frame and label
|
|
|
/// showing the name of the <see cref="Scenario"/> and logic to exit back to the Scenario picker UI. Override
|
|
|
/// <see cref="Init"/> to provide any <see cref="Terminal.Gui.Toplevel"/> behavior needed.
|
|
|
/// </summary>
|
|
@@ -176,9 +176,6 @@ public class Scenario : IDisposable
|
|
|
Top.Add (Win);
|
|
|
}
|
|
|
|
|
|
- /// <summary>Stops the scenario. Override to change shutdown behavior for the <see cref="Scenario"/>.</summary>
|
|
|
- public virtual void RequestStop () { Application.RequestStop (); }
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// Runs the <see cref="Scenario"/>. Override to start the <see cref="Scenario"/> using a <see cref="Toplevel"/>
|
|
|
/// different than `Top`.
|