WPF 非元素类绑定Binding之 Source 属性

其用来绑定具体的数据对象:如系统信息跟我们定义的资源数据。

静态资源:

<Window.Resources>
    <SolidColorBrush x:Key="redBrush">Red</SolidColorBrush>
</Window.Resources>

XAML:

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
    <TextBlock Text="{Binding Source={x:Static SystemFonts.IconFontFamily},Path=Source}"   Width="100" />
    <TextBlock x:Name="txbSet" Width="100" Margin="0 10 0 0" Text="{Binding Source={StaticResource redBrush}}" Foreground="{Binding Source={StaticResource redBrush}}" />
</StackPanel>

View:

WPF 非元素类绑定Binding之 Source 属性

将 XAML 代码改成可读写的 TextBox:

<!--这个会报错-->
<TextBox Text="{Binding Source={x:Static SystemFonts.IconFontFamily},Path=Source}"   Width="100" />  

<!--这个需要加 Path 路径-->
<TextBox  Width="100" Margin="0 10 0 0" Text="{Binding Source={StaticResource redBrush}, Path=Color}" Foreground="{Binding Source={StaticResource redBrush}}" />

报错内容:

无法对“System.Windows.Media.FontFamily”类型的只读属性“Source”进行 TwoWay 或 OneWayToSource 绑定。



参考:

https://www.cnblogs.com/wzh2010/p/6425060.html

上一篇:WPF项目创建


下一篇:WPF学习