0
정적 위임 명령이 있습니다. 나는 생성자에게 bool을 전달하고있다. 그러나 런타임 예외가 발생합니다.Prism DelgateComand가 예외를 throw합니다.
public static class myViewModel
{
public static ICommand myCommand {get; private set;}
static myViewModel
{
//If I change the bool to Object, or to Collection type, no exception assuming that I change myMethod parameter as well to the same type.
myCommand = new DelegateCommand<bool>(myMethod);
}
private static void myMethod (bool myBoolean)
{
//To Do
}
}
감사합니다. 당신은'bool? '에 대해 절대적으로 맞습니다.
그것은'예외 '를 포함시켜야 할 것입니다. 그것을 명심하십시오.
감사합니다. – John
포럼에 문제가 있습니까? 내 이전의 코멘트를 볼 수 있듯이 줄 바꿈을 존중하지 않았습니다. 그것은 텍스트로 그들을 남겼습니다 – John
@ 존 그건 의도적으로입니다. 여기에 코멘트에서 HTML을 사용할 수 없습니다. 과 함께 줄 바꿈을 삽입 할 수 있습니다. Shift + Enter을 입력 할 수 있지만 마크 다운이이를 준수하는지는 알 수 없습니다. 3, 2, 하나를 발견 ... –