关于WPF的XamDataGrid绑定的问题?
2014-01-23 · 知道合伙人数码行家
这里,既然是WPF去做,不建议使用Button的Enable属性去控制,可以使用命令ICommand的处理,按钮的状态也能控制到,也使得WPF的代码质量更好。
命令系统的基本元素
命令(Command):实现了ICommand接口的类,经常使用的有RoutedCommand类
命令源: 是命令的发送者,是实现了ICommandSource接口的类,大部分界面的控件都实现了这个接口,Button, MenuItem 等等。
命令目标:命令的接收者,命令目标是视线了IInputElement接口的类。
命令关联:负责一些逻辑与命令关联起来,比如判断命令是否可以执行,以及执行完毕后做一些处理。
命令接口的MSDN文档:http://msdn.microsoft.com/zh-cn/library/vstudio/system.windows.input.icommand(v=vs.100).aspx
网上也有很多相关的介绍,由于篇幅,这里就不具体说明了。
思路:使用ICommand的CanExecute()方法来控制按钮的状态,如果集合改变了,按钮就可用;否则按钮不可用。
要处理好这个问题,有两个主要知识点:
命令ICommand的使用
List集合的比较。
下面是命令实现代码:
这里用到的RelayCommand是WPF中通常用的已经实现的命令类。
#region Command
private ICommand _ButtonCommand;
public ICommand ButtonCommand
{
get
{
if (this._ButtonCommand == null)
{
this._ButtonCommand = new RelayCommand(
(parameter) => this.ButtonClick(parameter),
(parameter) => this.CanButtonClick(parameter));
}
return this._ButtonCommand;
}
set { }
}
/// <summary>
/// 命令是否可执行
/// </summary>
/// <param name="parameter"></param>
/// <returns></returns>
public bool CanButtonClick(object parameter)
{
return !ListIsEqual(Students,_Bak);
}
/// <summary>
/// 命令执行
/// </summary>
/// <param name="parameter"></param>
public void ButtonClick(object parameter)
{
//写需要处理的按钮命令
}
#endregion
下面是XAML代码:
<Grid>
<DataGrid HorizontalAlignment="Left" Height="173" Margin="92,104,0,0" VerticalAlignment="Top" Width="304"
ItemsSource="{Binding Students}" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="代码" Binding="{Binding Id}"/>
<DataGridTextColumn Header="姓名" Binding="{Binding Name}"/>
</DataGrid.Columns>
</DataGrid>
<Button Content="Button" HorizontalAlignment="Left" Height="30" Margin="322,35,0,0" VerticalAlignment="Top" Width="89"
Command="{Binding ButtonCommand}"/>
</Grid>
其他的一些List比较等代码就不具体贴出来了,可以看下附件代码。
如有其他疑问,可以在回复询问。
我试过,开始可以。但是当点击Button提交保存回发之后,Button的Enable又变为True了。
你不是要让button的enable变为ture么?你还要在什么时刻变为false的么?