-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathDisableUIAttribute.cs
33 lines (30 loc) · 1.05 KB
/
DisableUIAttribute.cs
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
using PostSharp.Aspects;
using PostSharp.Aspects.Dependencies;
using PostSharp.Patterns.Model;
using PostSharp.Patterns.Threading;
using PostSharp.Serialization;
using System;
using System.Windows.Controls;
using System.Windows.Threading;
namespace PostSharp.Samples.Xaml
{
[PSerializable]
[AspectTypeDependency(AspectDependencyAction.Require, AspectDependencyPosition.After, typeof(BackgroundAttribute))]
[AspectTypeDependency(AspectDependencyAction.Require, AspectDependencyPosition.After, typeof(NotifyPropertyChangedAttribute))]
[LinesOfCodeAvoided(4)]
public sealed class DisableUIAttribute : OnMethodBoundaryAspect
{
public override void OnEntry(MethodExecutionArgs args)
{
SetEnabled((Control) args.Instance, false);
}
public override void OnExit(MethodExecutionArgs args)
{
SetEnabled((Control) args.Instance, true);
}
private static void SetEnabled(Control control, bool enabled)
{
control.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => control.IsEnabled = enabled));
}
}
}