1.元素绑定
<Slider Name="sliderFontSize" Margin="3" Value="10" /> <TextBlock Margin="10" Text="AAA"
FontSize="{Binding ElementName=sliderFontSize,Path=Value,Mode=TwoWay,Delay=500,UpdateSourceTrigger=PropertyChaged}"/>
2.绑定模式
Mode:OneWay、TwoWay、OneTime、OneWayToSource、Default
绑定表达式只能用于依赖项属性,可以使用OneWayToSource来实现更新非依赖项属性的效果,例如
错误的绑定: <TextBlock Name="textBlock_MyProp" Text="{Binding ElementName=textBlock_MyProp,Path=Text}"/> <TextBox Name="txtBox_MyProp"/> 正确写法: <TextBlock Name="textBlock_MyProp"/> <TextBox Text="{Binding ElementName=textBlock_MyProp,Path=Text,Mode=OneWayToSource}"/>
3.绑定更新
更新触发UpdateSourceTrigger:
PropertyChaged(大多数默认此)
LoseFocus(TextBox.Text默认此)
Explicit(除非调用BindingExpression.UpdateSource(),否则无法更新源)
Default
延迟更新:Delay=500
4.绑定到非元素对象
Source
<Window.Resource> <FontFamiliy x:Key="CustomFont">Calibri</FontFamily> </Window.Resource> <TextBlock Text="{Binding Source={StaticResource CustomFont},Path=Source}"></TextBlock>
RelativeSource
<TextBlock Text="{Binding Path=Title,RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type Window}}}" />
Self:绑定到自身的另一个属性上
FindAncestor:向父级方向找匹配属性
PreviousData:绑定到数据绑定列表中的前一项,在列表项中会使用这种模式
TemplateParent:绑定到应用模板的元素,只用于控件模板和数据模板内部
DataContent
<StackPanel Grid.Row="4" Grid.Column="1" DataContext="{x:Static SystemFonts.IconFontFamily}"> <TextBlock Text="{Binding Path=Source}"/> <TextBlock Text="{Binding Source={x:Static SystemFonts.IconFontFamily},Path=FamilyTypefaces[0]}"/> <TextBlock Text="{Binding Path=FamilyTypefaces.Count}"/> <TextBlock Text="{Binding ElementName=cb_1,Path=(Grid.Row)}"/> </StackPanel>
标签:知识点,元素,绑定,更新,WPF,模板,属性 From: https://www.cnblogs.com/chixiner/p/17150793.html