Daten werden nun geladen
This commit is contained in:
@@ -1,11 +1,26 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GuiWPF
|
||||
namespace WPF
|
||||
{
|
||||
public class SettingsPageViewModel : ViewModelBase {
|
||||
public string PageTitle = "SettingsPage";
|
||||
public class SettingsPageViewModel : ViewModelBase
|
||||
{
|
||||
public SettingsPageViewModel(SettingsPage model)
|
||||
{
|
||||
this.Model = model;
|
||||
}
|
||||
public SettingsPage Model { get; private set; }
|
||||
public string PageTitle
|
||||
{
|
||||
get => this.Model.PageTitle;
|
||||
set
|
||||
{
|
||||
this.Model.PageTitle = value;
|
||||
this.OnPropertyChanged("PageTitle");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user