WPF: Binding to commands in code behind

sofri picture sofri · Jun 17, 2010 · Viewed 35.9k times · Source

I have a WPF Microsoft Surface Application and I'm using MVVM-Pattern.

I have some buttons that are created in code behind and I would like to bind commands to them, but I only know how that works in the XAML

like this:

<Custom:SurfaceButton Command="{Binding SaveReservationCommandBinding, Mode=OneWay}"/> 

But I cannot do it like this because my buttons do not exist in the XAML, only in the code behind.

So how would a command binding like that works in code behind?

Answer

Nightmare Games picture Nightmare Games · Oct 15, 2014

The accepted answer will work great if the Button has access to the Command. However, in MVVM these are usually kept separate (the Button in the View and the Command in the View-Model). In XAML you'd normally use a data binding to hook it up (like the example in the question).

My program gave me an error when my dynamic Button couldn't find the Command (because it was in a totally different namespace). This is how I ended up solving this:

SurfaceButton.SetBinding (Button.CommandProperty, new Binding("SaveReservationCommand"));