wpf - bind to self, parent or sibling
3167 단어 WPF
Bind to Parent
There are so many way to achieve this
1. in the constructor , set this.DataContext = this;
public MyUserControl(){
this.DataContext = this;
}
2. give the control in xaml a name and bind with ElementName attribute
<UserControl x:Class=MyUserControl
x:Name="Self"
>
<WrapPanel>
<TextBox Text="{Binding Path=MyDp, ElementName=Self"} />
</WrapPanel>
</UserControl>
3. Use relative source markup extension, and use AncestorType Attribute
<UserControl x:Class=MyUserControl
>
<WrapPanel>
<TextBox Text="{Binding Path=MyDp, Mode=TwoWay,RelativeSource={RelativeSource AncestorType=UserControl}}" />
</WrapPanel>
</UserControl>
Or you can be more specific
<UserControl x:Class=MyUserControl
xmlns:views="MyUserControl"
>
<WrapPanel>
<TextBox Text="{Binding Path=MyDp, Mode=TwoWay,RelativeSource={RelativeSource AncestorType={x:Type views:MyUserControl}}}" />
</WrapPanel>
</UserControl>
4. it is similar to 3, except if there are more than ancestor type in the hierarchy, so you want to confine a level to search .
<UserControl x:Class=MyUserControl
>
<WrapPanel>
<TextBox Text="{Binding Path=MyDp, Mode=TwoWay,RelativeSource={RelativeSource AncestorType=UserControl, AncestorLevel=2}}" />
</WrapPanel>
</UserControl>
Bind to self
To bind to self, there is two way
1. with RelativeSource, Mode=Self
<TextBox Text="{Binding Path=Background, Mode=TwoWay,RelativeSource={RelativeSource Self}}" />
2 with ElementName and assign a name to 'self'
<TextBox Text="{Binding Path=Background, Mode=TwoWay, ElementName=self}" x:Name="self" />
Bind to sibling.
There is no easy way to do that, however, you can take ciruitous way, with the help of finding the parent/self, and then walk down.
<StackPanel>
<views:UserControl1 />
<views:UserControl2 />
<TextBox Text="{Binding Path=Parent.Children[0].MyDp, Mode=TwoWay, RelativeSource={RelativeSource Self}}" />
</StackPanel>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MaterialDesign의 ComboBox HasClearButton 크기 변경WPF MaterialDesign은 편리하지만 때로는 표시가 너무 크거나 약간 사용하기 쉽습니다. ComboBox를 사용할 때 선택한 버튼을 지우려면 지우기 버튼을 표시할 수 있습니다. 아래와 같은 표시가 됩니다 다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.