Visual Studio/WPF > binding > RelativeSource={RelativeSource Self} > 여러 컨트롤의 색상을 Name으로 지정
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
RelativeSource={RelativeSource Self}
라는 쓰는 방법에 아직 익숙하지 않다.참고
구현
x:Name에 색을 지정해, 그 캐릭터 라인에 근거해 색을 붙이는 구현을 해 보았다.
Implicit Key(x:Key 미지정)로 Style 지정.
MainWindow.xaml
<Window x:Class="_170615_t1700_relativeSource.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_170615_t1700_relativeSource"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style TargetType="Rectangle">
<Setter Property="Fill"
Value="{Binding Name, RelativeSource={RelativeSource Self}}"/>
</Style>
</Window.Resources>
<Grid>
<StackPanel>
<Rectangle x:Name="Yellow" Height="50"/>
<Rectangle x:Name="Red" Height="50"/>
<Rectangle x:Name="Blue" Height="50"/>
</StackPanel>
</Grid>
</Window>
장래, 어떤 장면에서
RelativeSource={RelativeSource Self}
를 필요로 할까는 지금까지 불명.
Reference
이 문제에 관하여(Visual Studio/WPF > binding > RelativeSource={RelativeSource Self} > 여러 컨트롤의 색상을 Name으로 지정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/55e5acaa8e2c6b488022텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)