I want to pass integer values to command parameter like
xmlns:local="clr-namespace:SapHasap.Views"
...
<Button HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch"
Style="{StaticResource PopupButtons}"
Command="{Binding cmdNewEmployee}" >
<Button.CommandParameter>
<MultiBinding Converter="{StaticResource MultiBindingConverter}">
<sys:Int32>1</sys:Int32>
<sys:Int32>3</sys:Int32>
</MultiBinding>
</Button.CommandParameter>
...
but its false. How can I do something like that correctly?