我正在使用注册表Settings.settings thingymabob
我正在我的XAML中执行以下操作:
<TextBox x:Name="textBoxUsername"
Text="{Binding Source={x:Static prop:Settings.Default},
Path=Username, Mode=TwoWay}"></TextBox>
这样可以正常加载设置。现在,在我的Window Closing
事件中,我有以下内容:
Properties.Settings.Default.Save();
但它不会保存设置?
答案 0 :(得分:3)
尝试编写像这样的Text属性:
Text="{Binding Source={x:Static prop:Settings.Default}, Path=Username, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"