1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
using System.Windows;
using System.Windows.Media;
namespace MaterialDesignThemes.Wpf
{
public static class RippleAssist
{
#region ClipToBound
public static readonly DependencyProperty ClipToBoundsProperty = DependencyProperty.RegisterAttached(
"ClipToBounds", typeof(bool), typeof(RippleAssist), new FrameworkPropertyMetadata(true, FrameworkPropertyMetadataOptions.Inherits));
public static void SetClipToBounds(DependencyObject element, bool value)
{
element.SetValue(ClipToBoundsProperty, value);
}
public static bool GetClipToBounds(DependencyObject element)
{
return (bool)element.GetValue(ClipToBoundsProperty);
}
#endregion
#region StayOnCenter
/// <summary>
/// Set to <c>true</c> to cause the ripple to originate from the centre of the
/// content. Otherwise the effect will originate from the mouse down position.
/// </summary>
public static readonly DependencyProperty IsCenteredProperty = DependencyProperty.RegisterAttached(
"IsCentered", typeof(bool), typeof(RippleAssist), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.Inherits));
/// <summary>
/// Set to <c>true</c> to cause the ripple to originate from the centre of the
/// content. Otherwise the effect will originate from the mouse down position.
/// </summary>
/// <param name="element"></param>
/// <param name="value"></param>
public static void SetIsCentered(DependencyObject element, bool value)
{
element.SetValue(IsCenteredProperty, value);
}
/// <summary>
/// Set to <c>true</c> to cause the ripple to originate from the centre of the
/// content. Otherwise the effect will originate from the mouse down position.
/// </summary>
/// <param name="element"></param>
public static bool GetIsCentered(DependencyObject element)
{
return (bool)element.GetValue(IsCenteredProperty);
}
#endregion
#region disable
/// <summary>
/// Set to <c>True</c> to disable ripple effect
/// </summary>
public static readonly DependencyProperty IsDisabledProperty = DependencyProperty.RegisterAttached(
"IsDisabled", typeof(bool), typeof(RippleAssist), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.Inherits));
/// <summary>
/// Set to <c>True</c> to disable ripple effect
/// </summary>
/// <param name="element"></param>
/// <param name="value"></param>
public static void SetIsDisabled(DependencyObject element, bool value)
{
element.SetValue(IsDisabledProperty, value);
}
/// <summary>
/// Set to <c>True</c> to disable ripple effect
/// </summary>
/// <param name="element"></param>
public static bool GetIsDisabled(DependencyObject element)
{
return (bool)element.GetValue(IsDisabledProperty);
}
#endregion
#region RippleSizeMultiplier
public static readonly DependencyProperty RippleSizeMultiplierProperty = DependencyProperty.RegisterAttached(
"RippleSizeMultiplier", typeof(double), typeof(RippleAssist), new FrameworkPropertyMetadata(1.0, FrameworkPropertyMetadataOptions.Inherits));
public static void SetRippleSizeMultiplier(DependencyObject element, double value)
{
element.SetValue(RippleSizeMultiplierProperty, value);
}
public static double GetRippleSizeMultiplier(DependencyObject element)
{
return (double)element.GetValue(RippleSizeMultiplierProperty);
}
#endregion
#region Feedback
public static readonly DependencyProperty FeedbackProperty = DependencyProperty.RegisterAttached(
"Feedback", typeof(Brush), typeof(RippleAssist), new FrameworkPropertyMetadata(default(Brush), FrameworkPropertyMetadataOptions.Inherits | FrameworkPropertyMetadataOptions.AffectsRender));
public static void SetFeedback(DependencyObject element, Brush value)
{
element.SetValue(FeedbackProperty, value);
}
public static Brush GetFeedback(DependencyObject element)
{
return (Brush)element.GetValue(FeedbackProperty);
}
#endregion
}
}
|