###Scratching the surface...
Scratching the surface...
###Commands
Commands
###Construction
Construction
###Scratching the surface...
###Commands
###Construction
Scratching the surface...
Commands
Construction
I have to second @BCdotNET's comment @BCdotNET's comment, the "cl" prefixes are Hungarian, confusing and against C# naming standards.
I have to second @BCdotNET's comment, the "cl" prefixes are Hungarian, confusing and against C# naming standards.
I have to second @BCdotNET's comment, the "cl" prefixes are Hungarian, confusing and against C# naming standards.
<Button Command="{Bindingx:Static local:SomeClass.SaveCommand}">
Where local
is a CLR namespace you've defined in the XAML header, and SomeClass
is the class that contains the static SaveCommand
instance.
<Button Command="{Binding SaveCommand}">
<Button Command="{x:Static local:SomeClass.SaveCommand}">
Where local
is a CLR namespace you've defined in the XAML header, and SomeClass
is the class that contains the static SaveCommand
instance.