Exemple #1
0
 public PleaseWaitViewModel(INavigationChild other) : base(other)
 {
 }
Exemple #2
0
 public BlankViewModel(INavigationChild source) : this(source.Root, source.ChildName)
 {
 }
Exemple #3
0
 public ProfileViewModel(string source, INavigationChild other) : base(other)
 {
     Message = source;
 }
Exemple #4
0
 /// <summary>
 /// Initializes a new instance of <see cref="RedirectViewModel"/>.
 /// </summary>
 /// <param name="other">Other <see cref="INavigationChild"/>.</param>
 public RedirectViewModel(INavigationChild other) : this(other.Root, other.ChildName)
 {
 }
Exemple #5
0
 /// <summary>
 /// Initializes a new instance of <see cref="RedirectViewModelWithContent"/> with default internal navigation logic.
 /// </summary>
 /// <param name="source">The <see cref="IRedirectViewModel"/>.</param>
 public RedirectViewModelWithContent(INavigationChild source) : this(source.Root, source.ChildName)
 {
 }
Exemple #6
0
 public OtherPageViewModel(INavigationChild other) : base(other)
 {
 }
Exemple #7
0
 public ReproduceErrorViewModel(INavigationChild source) : base(source)
 {
     NavigateTo("dock", new SecondPartViewModel(this, "dock"));
     NavigateTo("content", new FirstPartViewModel(this, "content"));
 }