diff --git a/MainDemo.Wpf/Cards.xaml b/MainDemo.Wpf/Cards.xaml
index e87a47aa83..5e7e403a0d 100644
--- a/MainDemo.Wpf/Cards.xaml
+++ b/MainDemo.Wpf/Cards.xaml
@@ -551,6 +551,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MaterialDesignThemes.Wpf/Flipper.cs b/MaterialDesignThemes.Wpf/Flipper.cs
index ccd5087d30..18a6683709 100644
--- a/MaterialDesignThemes.Wpf/Flipper.cs
+++ b/MaterialDesignThemes.Wpf/Flipper.cs
@@ -143,6 +143,18 @@ private static void OnIsFlippedChanged(
instance.RaiseEvent(args);
}
+ public static readonly DependencyProperty UniformCornerRadiusProperty = DependencyProperty.Register(
+ nameof(UniformCornerRadius), typeof(double), typeof(Flipper), new PropertyMetadata(default(double)));
+
+ ///
+ /// Gets or sets the (uniform) corner radius applied the the when the MaterialDesignCardFlipper style is applied.
+ ///
+ public double UniformCornerRadius
+ {
+ get => (double)GetValue(UniformCornerRadiusProperty);
+ set => SetValue(UniformCornerRadiusProperty, value);
+ }
+
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
diff --git a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml b/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml
index 53de7c085d..090d60feb4 100644
--- a/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml
+++ b/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Flipper.xaml
@@ -1,4 +1,4 @@
-
@@ -162,7 +162,7 @@
-
+