Starting from the sample I've edited the Master/Details code to build a settigns page.
However the Details part is not updated when I select a new item, and I can't understand what's going on.
Basically just the first selection works, for the others the Master view is updated but it keeps on loading the first Detail selected.
Here's some code, hoping that someone can help me.
public class Setting
{
public string SettingName { get; }
public Symbol SettingIcon { get; }
public Type SettingType { get; }
public Setting(string settingName, Symbol settingIcon, Type settingType)
{
SettingName = settingName;
SettingIcon = settingIcon;
SettingType = settingType;
}
}
Starting from the sample I've edited the Master/Details code to build a settigns page. However the Details part is not updated when I select a new item, and I can't understand what's going on. Basically just the first selection works, for the others the Master view is updated but it keeps on loading the first Detail selected.
Here's some code, hoping that someone can help me.
M/D
Styles
Model
One of the pages
Part of SettingsPageViewModel
Everytime the PersonalizationPage is loaded, even if the SelectedSetting is updated correctly (tried with a breakpoint). What am I doing wrong?