Hi,
I have an WPF Microsoft Surface Applikation 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?