blob: 58517356b8ed77cc5193789d74ef545ef059588b (
plain)
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
|
using System.Windows;
namespace MaterialDesignThemes.Wpf.Transitions
{
/// <summary>
/// Allows transitions to be disabled where supported.
/// </summary>
public static class TransitionAssist
{
/// <summary>
/// Allows transitions to be disabled where supported. Note this is an inheritable property.
/// </summary>
public static readonly DependencyProperty DisableTransitionsProperty = DependencyProperty.RegisterAttached(
"DisableTransitions", typeof (bool), typeof (TransitionAssist), new FrameworkPropertyMetadata(default(bool), FrameworkPropertyMetadataOptions.Inherits));
/// <summary>
/// Allows transitions to be disabled where supported. Note this is an inheritable property.
/// </summary>
public static void SetDisableTransitions(DependencyObject element, bool value)
{
element.SetValue(DisableTransitionsProperty, value);
}
/// <summary>
/// Allows transitions to be disabled where supported. Note this is an inheritable property.
/// </summary>
public static bool GetDisableTransitions(DependencyObject element)
{
return (bool) element.GetValue(DisableTransitionsProperty);
}
}
}
|