Button'ın LinkButton gibi görünmesini nasıl sağlayabilirim ve Köprü kullanmak istemiyorum ... !!
Herhangi bir öneri
Button'ın LinkButton gibi görünmesini nasıl sağlayabilirim ve Köprü kullanmak istemiyorum ... !!
Herhangi bir öneri
Yanıtlar:
Normal Button stilinin hiçbirini istemiyor ve sadece bir köprü gibi görünen bir şey istiyorsanız, bununla başlayabilirsiniz.
<Button Margin="5" Content="Test" Cursor="Hand">
<Button.Template>
<ControlTemplate TargetType="Button">
<TextBlock TextDecorations="Underline">
<ContentPresenter />
</TextBlock>
</ControlTemplate>
</Button.Template>
<Button.Style>
<Style TargetType="Button">
<Setter Property="Foreground" Value="Blue" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Foreground" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
İşte bir stille aynı:
<Style
x:Key="LinkButton"
TargetType="Button">
<Setter
Property="Template">
<Setter.Value>
<ControlTemplate
TargetType="Button">
<TextBlock
TextDecorations="Underline">
<ContentPresenter /></TextBlock>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter
Property="Foreground"
Value="Blue" />
<Style.Triggers>
<Trigger
Property="IsMouseOver"
Value="true">
<Setter
Property="Foreground"
Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
ve bunu şu şekilde kullanabilirsiniz:
<Button Style="{StaticResource LinkButton}" Content="Clicky" />
<Trigger Property="IsEnabled" Value="False"><Setter Property="Foreground" Value="Gray" /> </Trigger>
IsEnabled durumuna eklemenizi öneririm
<Style x:Key="LinkButton"
TargetType="Button"
BasedOn="{StaticResource ResourceKey={x:Type Button}}"
>
<Setter Property="Width" Value="Auto"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ContentPresenter Content="{TemplateBinding Content}"
ContentTemplate="{TemplateBinding ContentTemplate}"
VerticalAlignment="Center"
>
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="TextDecorations" Value="Underline" />
</Style>
</ContentPresenter.Resources>
</ContentPresenter>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Foreground" Value="Blue" />
<Setter Property="Cursor" Value="Hand" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Foreground" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
MichaC en ve Anderson'un versiyonu biraz yanlış altı çizili yerleştirilir, burada sadece herhangi bir altı çizili katacak güncelleştirilmiş versiyonu TextBlock
içeride olduğunu ContentPresenter
.
MichaC'ın Style
herhangi bir düğmede yeniden kullanabileceğiniz bir önerisi :
<Style x:Key="LinkButton" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<TextBlock TextDecorations="Underline">
<ContentPresenter />
</TextBlock>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Foreground" Value="Blue" />
<Setter Property="Cursor" Value="Hand" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Foreground" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
En kolay yol (bunu başvurumda yapıyorum):
<TextBlock Name="..."
Text="..."
Cursor="Hand"
Foreground="Blue"
TextDecorations="Underline"
MouseLeftButtonUp=..."
/>
TextDecoration üzerinde tam kontrole sahipsiniz, örneğin kalem stilini veya ofseti değiştirin. daha fazlasını öğrenmek için bu bağlantıya bir göz atın: http://msdn.microsoft.com/en-us/library/system.windows.textdecorations.underline.aspx
Neden Köprü kullanmak istemiyorsunuz?
<Button>
<Hyperlink>
</Button>