作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 View 中有一个按钮:
<Button Grid.Row="0" Grid.Column="1" Content="Export to CSV "
HorizontalAlignment="Right" VerticalAlignment="Center"
Margin="2,2,20,2" Style="{StaticResource ExportButton}"
Command="{Binding ExportToExcelCommand}"
CommandParameter="{TelerikGrid}"
/>
ExportCommand
中的
ViewModel
为:
private RelayCommand _exportToExcelCommand;
public ICommand ExportToExcelCommand
{
get
{
if (_exportToExcelCommand == default(RelayCommand))
{
_exportToExcelCommand = new RelayCommand(ExportToExcel, CanExport);
}
return _exportToExcelCommand;
}
}
private void ExportToExcel(Object param)
{
try
{
//ToDo: Update With Command Parameters
RadGridView gdv = new RadGridView();
using (Stream stream = dialog.OpenFile())
{
gdv.Export(Columns);
}
}
catch (FaultException ex)
{
var faultMessage = ex.Reason.GetMatchingTranslation().Text + "/n" + ex.StackTrace;
}
}
RadGridView gdv = new RadGridView();
gdv
传递的值分配
CommandParameter
最佳答案
RadGridView gdv = (RadGridView)param;
param
是您发送的对象,因此只需将其转换为它的来源即可。
关于c# - 如何从 View 模型访问CommandParameter值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15088086/
我是一名优秀的程序员,十分优秀!