1

我有一个 WPF 表单,它有一些按钮来保存用户输入、删除和取消。我试图添加功能,以便每当用户单击取消按钮时,都会弹出一条消息。相反,它会在我的控制器中引发异常:

"The call is ambiguous between the following methods or properties"

这是我的看法:

 <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,0,0,0">                        
    <Button Name="DeleteButton" Command="{Binding DeleteCommand}" CommandParameter="{Binding Path=SelectedStory}"  Cursor="Hand" Height="25" IsEnabled="{Binding CanDelete}" Margin="5 0 0 0">Delete</Button>
    <Button Name="SubmitButton" Command="{Binding SubmitCommand}" CommandParameter="{Binding Path=SelectedStory}"  Cursor="Hand" Height="25"  Margin="5 0 0 0">Submit</Button>
    <Button Name="CancelButton" Command="{Binding CloseCommand}" CommandParameter="{Binding Path=SelectedStory}"  Cursor="Hand" Height="25" Margin="5 0 0 0" >Cancel</Button>
 </StackPanel>

我的控制器代码:

    public MetadataController(IGatewayService gateway, IEventAggregator eventAggregator, IDialogService dialog)
    {
        this.gateway = gateway;
        this.eventAggregator = eventAggregator;
        this.dialog = dialog;

        // commands            
        this.CloseCommand = new DelegateCommand<StoryItem>(this.Close);//here i got the exception throwing "the call is ambiguous between the following methods or properties"
        this.DeleteCommand = new DelegateCommand<StoryItem>(this.Delete);
        this.SubmitCommand = new DelegateCommand<StoryItem>(this.Submit, this.HasFieldsRequiredBeforeSubmit);

        this.eventAggregator.GetEvent<StorySelectedEvent>().Subscribe(OnStorySelected);
    }

    private void Close(StoryItem selsectedStory)//when i click my close button its not calling this method at all.
    {
        bool isConfirmed = this.dialog.ShowConfirmation("Are you sure you want to close?");
    }

    private void Delete(StoryItem selectedStory)
    {
        bool isConfirmed = this.dialog.ShowConfirmation("Are you sure you want to permanently delete ?");

        if (isConfirmed)
        {
            this.gateway.DeleteStoryItem(selectedStory);

            this.eventAggregator.GetEvent<CommandCompletedEvent>().Publish(CommandTypes.MetadataEntry);
        }
    }
4

2 回答 2

2

您收到的异常表明它无法访问您尝试调用的任何方法/属性。也许还有其他一些方法或属性也被调用CloseCloseCommand导致冲突?

于 2012-05-04T00:02:44.707 回答
0

异常的原因,我确实已经有了该方法,并且我正在尝试创建一个,这就是它抛出该错误的原因。非常感谢大家的帮助。

于 2012-05-04T00:41:49.167 回答