View を Properties.Settings.Default の設定に直接バインドできますか? または、同じ名前のプロパティを作成し、値を手動で更新する必要がありますか?
質問する
993 次
1 に答える
3
これを試して :
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Properties="clr-namespace:WpfApplication1.Properties" Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Label Content="{Binding Source={x:Static Properties:Settings.Default}, Path=BrandOfBeerOfChoice}"/>
</Grid>
</Window>
小さなアプリで、 という設定エントリを作成しましたBrandOfBeerOfChoice
。
于 2012-10-04T20:11:36.237 に答える