I use Style.Triggers & DataTrigger to Enable/Disable a button.
But the style I’ve applied is gone. It is the Expression Dark.
Is it possible to fix it and return style to the button?
Thanks!!!
<Application.Resources>
<ResourceDictionary x:Uid="ResourceDictionary_1" >
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary x:Uid="ResourceDictionary_3" Source="/Themes/ExpressionDark.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>

SOLUTION:
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}" >
In your Style try something like this: