WPF绑定Bind方法合集,实时更新

时间:2024-11-21 09:08:21

绑定静态属性x:Static

<TextBlock Text="{x:Static System:Environment.MachineName}" />

绑定到自身的属性RelativeSource Self

<Rectangle Width="100" Height="{Binding Width, RelativeSource={RelativeSource Self}}" />

绑定到集合的当前项:你可以使用Path=Items/来绑定到集合的当前项

public List<string> strings { get; set; } = Enumerable.Repeat("Hello", 10).ToList();
<TextBlock Text="{Binding Path=Items/}" />

表现为第一个Hello,如果是IEnumerable类型则对应yield的顺序

获取集合当前项的第0个成员strings/[0]

public List<string> strings { get; set; } = Enumerable.Repeat("Hello", 10).ToList();
<TextBlock Text="{Binding strings/[0]}" />

获取当前项的第0个元素
表现为第一个Hello的第一个字母,H

特殊绑定(Button.Background).(SolidColorBrush.Color)

(Button.Background).(SolidColorBrush.Color)表示的是Button的Background属性的Color属性。Button.Background是一个Brush类型的属性,SolidColorBrush.Color是SolidColorBrush的一个属性,表示颜色。
由于Background是Brush类型,Brush是抽象类,SolidColorBrush是子类,意为把((SolidColorBrush)(Button.Background)).Color
在这里插入图片描述