You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
534 B
19 lines
534 B
using System; |
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels; |
|
|
|
public partial class LaunchPageViewModel : PageViewModelBase |
|
{ |
|
/// <summary> |
|
/// The Title of this page |
|
/// </summary> |
|
public string Title => "Welcome to our Wizard-Sample."; |
|
|
|
/// <summary> |
|
/// The content of this page |
|
/// </summary> |
|
public string Message => "Press \"Next\" to register yourself."; |
|
|
|
public override bool CanNavigateNext { get; protected set; } |
|
public override bool CanNavigatePrevious { get; protected set; } |
|
}
|
|
|