我想设计一个带有2个背景图像的按钮(第一个启用时,第二个禁用时)。如下所示。 我如何按钮样式?
试过这样的事情。但内容不是这里的财产。
<Style TargetType="{x:Type Button}" x:Key="LinkButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border x:Name="Overlay" CornerRadius="2">
<ContentPresenter/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="True">
<!--<Setter TargetName="Overlay" Property="Content" Value="Red"/>-->
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
答案 0 :(得分:0)
如果你想在xaml中这样做,那么使用画布在按钮内有两个图像。 使用触发器的编辑样式可以更改按钮内所需图像的可见性。
我认为你可以明白这一点。如果真的有用,请标记有用 谢谢
答案 1 :(得分:0)
你可以在Style and Converter的帮助下这样做:
不透明度转换器:
using System;
using System.Globalization;
using System.Windows.Data;
namespace EnableButton
{
public class OpacityConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return (bool) value ? 1 : 0.5;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}
你的Xaml:
<Window x:Class="EnableButton.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EnableButton"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:OpacityConverter x:Key="OpacityConverter"/>
<Style x:Key="DisableIcon" TargetType="Image">
<Setter Property="Opacity" Value="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Button}}, Path=IsEnabled, Converter={StaticResource OpacityConverter}}"/>
</Style>
</Window.Resources>
<StackPanel>
<Button Height="24" IsEnabled="False">
<Image Style="{StaticResource DisableIcon}" Source="Open_22.png"/>
</Button>
</StackPanel>
</Window>
现在,如果您更改按钮的 IsEnable 属性,您将看到结果。在 OpacityConverter 中禁用父按钮后,我将图片的不透明度属性从100%更改为50%,以便您可以根据需要修复此问题另一个数字。
<强>更新强>
我想了一下你的问题。我认为如果按钮被禁用,不仅可以更改图像的不透明度,还可以将图像图像转换为单色图像。所以我找到了这个解决方案(添加对 Microsoft.Expression.Effects.dll 的引用并将xmlns:ee =“http://schemas.microsoft.com/expression/2010/effects”添加到表单中试图):
<Window x:Class="EnableButton.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EnableButton"
xmlns:ee="http://schemas.microsoft.com/expression/2010/effects"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style x:Key="DisableImageStyle" TargetType="Image">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Button}}, Path=IsEnabled}" Value="False">
<Setter Property="Opacity" Value="0.4"/>
<Setter Property="Effect">
<Setter.Value>
<ee:EmbossedEffect/>
<!--This effect is also looks nice-->
<!--<ee:MonochromeEffect/>-->
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</Window.Resources>
<StackPanel>
<Button Height="40" IsEnabled="False">
<Image Style="{StaticResource DisableImageStyle}" Source="Open_22.png"/>
</Button>
</StackPanel>
</Window>
请注意,我现在不使用任何转换器!
答案 2 :(得分:0)
您可以使用DataTrigger更改按钮的背景图像。以下链接可能有所帮助。
答案 3 :(得分:0)
我不确定您如何设置按钮的样式,但如果您能够将两个图像放入样式中,那么您可以在IsEnabled
更改时更改可见性。
<Style TargetType="{x:Type Button}" x:Key="LinkButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border x:Name="Overlay" CornerRadius="2">
<Image x:Name="Enabled" Source="{StaticResource EnabledImg}"/>
<Image x:Name="Disabled" Source="{StaticResource DisabledImg}" Visibility="Collapsed"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Disabled" Property="Visibility" Value="Visible"/>
<Setter TargetName="Enabled" Property="Visibility" Value="Collapsed"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>