blob: 17655471efa28c9979326ad126e96aa8c648ba13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.Windows;
namespace MaterialDesignThemes.Wpf
{
/// <summary>
/// Internal use only.
/// </summary>
public class ScaleHost : FrameworkElement
{
public static readonly DependencyProperty ScaleProperty = DependencyProperty.Register(
"Scale", typeof(double), typeof(ScaleHost), new PropertyMetadata(0.0));
public double Scale
{
get { return (double) GetValue(ScaleProperty); }
set { SetValue(ScaleProperty, value); }
}
}
}
|