Hello I am trying to create a RadialButton style with an image and I want that image (source) to be variable.

<Style x:Key="RadialButton1" TargetType="Button">
              <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="Button">
                        <Ellipse
                            Stroke="Black" 
                            HorizontalAlignment="Center"
                            VerticalAlignment="Center"
                            Width="60"
                            Height="60"
                            x:Name="Ellipse" >
                            <Ellipse.Fill >
                                <ImageBrush ImageSource="/DessCol;component/Images/Recommencer.ico"/>
                            </Ellipse.Fill>
                         </Ellipse>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

....

<Button  Height="37" HorizontalAlignment="Left" Margin="15,20,0,0" Name="btnRecommencer" VerticalAlignment="Top" Width="51"  Style="{StaticResource RadialButton1}" Click="btnRecommencer_Click"/>

I want the Ellipse.Fill property to be variable and set by the Content attribute of the Button. I'll be looking to Binding, RelativeSource, etc... but would appreciate if someone have an idea of how to achieve this

Thank you

Addendum

Something like

<Ellipse Fill="{TemplateBinding Content}"/> 
link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use RelativeSource in the Binding

<Style x:Key="RadialButton1" TargetType="Button">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="Button">
                <Ellipse Stroke="Black" HorizontalAlignment="Center" VerticalAlignment="Center"
                         Width="60" Height="60" x:Name="Ellipse" >
                    <Ellipse.Fill >
                        <ImageBrush ImageSource="{Binding RelativeSource={RelativeSource AncestorType={x:Type Button}},
                                                          Path=Content}"/>
                    </Ellipse.Fill>
                </Ellipse>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>
link|improve this answer
Didn't work but have responds to the click event inside the ellipse – Nestor Jan 11 '11 at 10:41
Sorry, you're right. With...<Button Height="37" HorizontalAlignment="Left" Margin="100,20,0,0" Name="btnToutDessiner" Style="{StaticResource RadialButton2}" VerticalAlignment="Top" Width="51" Click="btnToutDessiner_Click" Content="/DessCol;component/Images/ToutDessiner.ico" > – Nestor Jan 11 '11 at 10:52
@Nestor: Please mark this answer as accepted if it solved your problem – Meleak Jan 11 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.