this question might sound silly. I want to do login page by editing the template in VS2010 with Prism 4.0 as the template. as a login page, it will have 2 textbox, one is username and another one is password. in one button click, i want that button to retrieve both of the value. currently this not happen,because it just carry 1 value. i am new to this MVVM. if i put the code in the view part, perhaps this might violate the model.
this is part of the code (from the template)
<Button prism:Click.Command="{Binding Login}"
prism:Click.CommandParameter="{Binding Username}" Margin="2"
ToolTipService.ToolTip="Click to navigate to the Edit View for this item." IsCancel="True" IsDefault="False"><Image Height="20" Width="20" Source="/Module1;component/Images/NavigateToView.png" />
</Button>