Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

Silverlight スタイルの継承

スタイルを継承するサンプルです。

ソースコード

MainPage.xaml
<UserControl xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"  x:Class="SilverlightApplication1.MainPage"
    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"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
    <UserControl.Resources>
        <!-- 継承元のスタイルを先に定義しないと、継承先で参照できない。 -->
        <Style x:Key="BaseStyle" TargetType="Rectangle">
            <Setter Property="Stroke" Value="Blue" />
            <Setter Property="Width" Value="300" />
        </Style>
        <Style x:Key="RectangleStyle" TargetType="Rectangle" BasedOn="{StaticResource BaseStyle}">
            <Setter Property="Fill" Value="Red" />
            <Setter Property="StrokeThickness" Value="10" />
            <Setter Property="Width" Value="200" />
            <Setter Property="Height" Value="100" />
        </Style>
    </UserControl.Resources>
    <StackPanel>
        <Rectangle Style="{StaticResource RectangleStyle}" />
    </StackPanel>
</UserControl>

レンダリング

関連エントリー

Silverlightエントリーのまとめ - プログラマーな日々
Silverlight関連のエントリーのまとめです。 ...