你的问题我写了一篇文章 你看看 希望可以帮你解决问题! http://www.cnblogs.com/BeiJing-Net-DaiDai/p/3227611.html
xaml文件 :
Command="{Binding btn_Click}"
只用Command 就好
xaml页面后台:
viewmodel对象.txtName=txtName;
viewmodel对象.txtPassword=txtPassword;......
this.DataContext=viewmodel对象
viewmodel 里面定义全局变量和要传递的控件类型相同public TextBox txtName{get;set;}public TextBox txtPassword{get;set;}
事件处理:
public ICommand btn_Click
{
get{
return new RelayCommand(()=>{
//处理代码
});
}
}