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} 를 필요로 할까는 지금까지 불명.

좋은 웹페이지 즐겨찾기