Browse Source

Fix TestPlugin/CustomOptionPage

pull/1866/head
Siegfried Pammer 6 years ago
parent
commit
8991861f4d
  1. 5
      TestPlugin/CustomOptionPage.xaml.cs

5
TestPlugin/CustomOptionPage.xaml.cs

@ -31,6 +31,11 @@ namespace TestPlugin @@ -31,6 +31,11 @@ namespace TestPlugin
this.DataContext = s;
}
public void LoadDefaults()
{
this.DataContext = new Options();
}
public void Save(XElement root)
{
Options s = (Options)this.DataContext;

Loading…
Cancel
Save