The easiest way is to implement ButtonClick event handler and invoke Window.Close() method. But how to do this through a command binding?
|
|
I think that in real world scenarios a simple click handler is probably better than over-complicated command-based systems but you can do something like that: using RelayCommand from this article http://msdn.microsoft.com/en-us/magazine/dd419663.aspx
|
|||
|
|
All it takes is a bit of XAML...
And a bit of C#...
(adapted from this MSDN article) |
|||||||||||||||
|
|
Actually, it IS possible without c# code. The key is to use interactions:
In order for this to work, just set the x:Name of your window to "window", and add these two namespaces:
They are contained in assemblies provided by Expression Blend. In case you don't have Blend, they should also be included in the Expression Blend SDK (afaik). The SDK is free and can be downloaded here: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=75E13D71-7C53-4382-9592-6C07C6A00207 Also note my blog post about this. |
||||
|
Another advantage to using commands is that they are automatically changed when your app is localized. So CTRL+O for Open on US English systems becomes CTRL+A for Abrir (or something like that) on Spanish Windows. The commands also supply the "CTRL+O" text that's added to the menu item. You don't have to do a thing. |
|||
|
|
