gpt4 book ai didi

c# - 在绑定(bind)到 ICommand 的 Button 处控制 ExceptionValidationRule

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:10 25 4
gpt4 key购买 nike

我有一个按钮进入绑定(bind)到 ICommand 的 WPF 窗口

<Button Style="{StaticResource ToolBarButtonSearchTime}">
<Button.Command>
<Binding Path="FiltrarPlanillasCommand">
<Binding.ValidationRules>
<ExceptionValidationRule/>
</Binding.ValidationRules>
</Binding>
</Button.Command>
</Button>

这是执行的方法

public void FiltrarPlanillasExecute(object p)
{
FiltrosDocumento filtro = new FiltrosDocumento();
filtro.ListaBodegasAcopio = ListaBodegasSeleccionadas;
filtro.FechaInicial = FechaInicial;
filtro.FechaFinal = FechaFinal;
filtro.IntIdmodulo = IntIdModulo;
try
{
filtro.PlanillaAcopioLiquidada = PlanillaAcopioLiquidada;

ListaPlanillas = null;
ListaPlanillas = new ObservableCollection<Merlin_MovimientoDocumentosFacturacion_Enc>(
ListaDocumentos.PlanillasAcopio(filtro, db)
);
((DelegateCommand)_ICommandParadigmaNPrint).RaiseCanExecuteChanged();
}
catch (Exception)
{
// Here this exception wasn't catched
throw;
}
}

为什么如果<ExceptionValidationRule/>已设置,它没有捕获异常?我的代码有什么问题?

最佳答案

ExceptionValidationRule 用于捕获属性的 set 或 get 方法发生的异常,而不是您绑定(bind)到的命令属性的 execute 方法。

关于c# - 在绑定(bind)到 ICommand 的 Button 处控制 ExceptionValidationRule,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19270748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com