From 9bdf9d15b311e792bf5bdfd7222d633096dd2ee7 Mon Sep 17 00:00:00 2001 From: Antony Male Date: Wed, 14 Jan 2015 15:08:43 +0000 Subject: [PATCH] Align style with ReSharper --- Stylet.sln.DotSettings | 4 +++- Stylet/Xaml/ActionExtension.cs | 15 +++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Stylet.sln.DotSettings b/Stylet.sln.DotSettings index a2cf130..312bf12 100644 --- a/Stylet.sln.DotSettings +++ b/Stylet.sln.DotSettings @@ -1,4 +1,5 @@  + DO_NOT_SHOW HINT HINT HINT @@ -10,4 +11,5 @@ HINT UI <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb"><ExtraRule Prefix="_" Suffix="" Style="aaBb" /></Policy> - <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb"><ExtraRule Prefix="_" Suffix="" Style="aaBb" /></Policy> \ No newline at end of file + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb"><ExtraRule Prefix="_" Suffix="" Style="aaBb" /></Policy> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> \ No newline at end of file diff --git a/Stylet/Xaml/ActionExtension.cs b/Stylet/Xaml/ActionExtension.cs index 9496469..4c3c044 100644 --- a/Stylet/Xaml/ActionExtension.cs +++ b/Stylet/Xaml/ActionExtension.cs @@ -61,22 +61,22 @@ namespace Stylet.Xaml this.Method = method; } - private ActionUnavailableBehaviour commandNullTargetBehaviour + private ActionUnavailableBehaviour CommandNullTargetBehaviour { get { return this.NullTarget == ActionUnavailableBehaviour.Default ? (Execute.InDesignMode ? ActionUnavailableBehaviour.Enable : ActionUnavailableBehaviour.Disable) : this.NullTarget; } } - private ActionUnavailableBehaviour commandActionNotFoundBehaviour + private ActionUnavailableBehaviour CommandActionNotFoundBehaviour { get { return this.ActionNotFound == ActionUnavailableBehaviour.Default ? ActionUnavailableBehaviour.Throw : this.ActionNotFound; } } - private ActionUnavailableBehaviour eventNullTargetBehaviour + private ActionUnavailableBehaviour EventNullTargetBehaviour { get { return this.NullTarget == ActionUnavailableBehaviour.Default ? ActionUnavailableBehaviour.Enable : this.NullTarget; } } - private ActionUnavailableBehaviour eventActionNotFoundBehaviour + private ActionUnavailableBehaviour EventActionNotFoundBehaviour { get { return this.ActionNotFound == ActionUnavailableBehaviour.Default ? ActionUnavailableBehaviour.Throw : this.ActionNotFound; } } @@ -99,14 +99,13 @@ namespace Stylet.Xaml if (propertyAsDependencyProperty != null && propertyAsDependencyProperty.PropertyType == typeof(ICommand)) { // If they're in design mode and haven't set View.ActionTarget, default to looking sensible - return new CommandAction((DependencyObject)valueService.TargetObject, this.Method, this.commandNullTargetBehaviour, this.commandActionNotFoundBehaviour); + return new CommandAction((DependencyObject)valueService.TargetObject, this.Method, this.CommandNullTargetBehaviour, this.CommandActionNotFoundBehaviour); } var propertyAsEventInfo = valueService.TargetProperty as EventInfo; if (propertyAsEventInfo != null) { - - var ec = new EventAction((DependencyObject)valueService.TargetObject, propertyAsEventInfo.EventHandlerType, this.Method, this.eventNullTargetBehaviour, this.eventActionNotFoundBehaviour); + var ec = new EventAction((DependencyObject)valueService.TargetObject, propertyAsEventInfo.EventHandlerType, this.Method, this.EventNullTargetBehaviour, this.EventActionNotFoundBehaviour); return ec.GetDelegate(); } @@ -117,7 +116,7 @@ namespace Stylet.Xaml var parameters = propertyAsMethodInfo.GetParameters(); if (parameters.Length == 2 && typeof(RoutedEventHandler).IsAssignableFrom(parameters[1].ParameterType)) { - var ec = new EventAction((DependencyObject)valueService.TargetObject, parameters[1].ParameterType, this.Method, this.eventNullTargetBehaviour, this.eventActionNotFoundBehaviour); + var ec = new EventAction((DependencyObject)valueService.TargetObject, parameters[1].ParameterType, this.Method, this.EventNullTargetBehaviour, this.EventActionNotFoundBehaviour); return ec.GetDelegate(); } }