如何将TextBox文本设置为App.config文件中的值
我的App.config:
<appSettings>
<add key="Hours" value="12"/>
<add key="Minutes" value="00"/>
</appSettings>
如何将Minutes
的值设置为TextBox文本,并在Minutes
更新
<TextBox x:Name="Minutes_Top" Text="00"/>
我尝试在顶部添加此行:
xmlns:properties="clr-namespace:_10KHours.Properties"
并在TextBox中添加此行
Text="{Binding Source={x:Static properties:Settings.Default}, Mode=OneWay}"
但它不起作用,文字是“ _10KHours.Properties.Settings ”
我希望In Minutes_Top中的文本将像App.config
中的值一样00,并在值更改时更改(当App.config中的值更改或文本更改时,App.config值将更改改变)