We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i change "wpf:Card.Style" with "MaterialDesignOutlinedCard"?
The text was updated successfully, but these errors were encountered:
At present, the style for the internal card on the dialog host is not exposed, so there is no simple way to expose that.
Sorry, something went wrong.
@Keboo The dailog host content is so blurry with default card style. Can you add a new style named "MaterialDesignOutlinedDialogHost"?
... <wpf:Card.Style> <Style TargetType="wpf:Card" BasedOn="{StaticResource MaterialDesignOutlinedCard}"> <Setter Property="Background" Value="{Binding Tag, RelativeSource={RelativeSource Self}}" /> <Style.Triggers> <Trigger Property="Tag" Value="{x:Null}"> <Setter Property="Background" Value="{DynamicResource MaterialDesignPaper}" /> </Trigger> </Style.Triggers> </Style> </wpf:Card.Style>\ ...
Successfully merging a pull request may close this issue.
How can i change "wpf:Card.Style" with "MaterialDesignOutlinedCard"?
The text was updated successfully, but these errors were encountered: