在WPF,XAML

时间:2017-07-24 11:39:45

标签: c# wpf xaml

如何将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值将更改改变)

0 个答案:

没有答案