Почему DelegateCommand не работает одинаково для Button и MenuItem? - PullRequest
0 голосов
/ 05 июня 2009

Этот код показывает, что Команда делегата из шаблона Visual Studio MVVM работает по-разному при использовании с MenuItem и Button:

  • с кнопкой, командный метод имеет доступ к измененным значениям OnPropertyChanged в ViewModel
  • при использовании MenuItem, однако, метод команды не имеет доступа к измененным значениям OnPropertyChanged

Кто-нибудь знает, почему это так?

MainView.xaml:

<Window x:Class="TestCommand82828.Views.MainView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:c="clr-namespace:TestCommand82828.Commands"
    Title="Main Window" Height="400" Width="800">

    <DockPanel>
        <Menu DockPanel.Dock="Top">
            <MenuItem Header="_File">
                <MenuItem Command="{Binding DoSomethingCommand}" Header="Do Something" />
            </MenuItem>
        </Menu>
        <StackPanel HorizontalAlignment="Left" VerticalAlignment="Top">
            <Button Command="{Binding DoSomethingCommand}" Content="test"/>
            <TextBlock Text="{Binding Output}"/>
            <TextBox Text="{Binding TheInput}"/>
        </StackPanel>

    </DockPanel>
</Window>

MainViewModel.cs:

using System;
using System.Windows;
using System.Windows.Input;
using TestCommand82828.Commands;

namespace TestCommand82828.ViewModels
{
    public class MainViewModel : ViewModelBase
    {
        #region ViewModelProperty: TheInput
        private string _theInput;
        public string TheInput
        {
            get
            {
                return _theInput;
            }

            set
            {
                _theInput = value;
                OnPropertyChanged("TheInput");
            }
        }
        #endregion

        #region DelegateCommand: DoSomething
        private DelegateCommand doSomethingCommand;

        public ICommand DoSomethingCommand
        {
            get
            {
                if (doSomethingCommand == null)
                {
                    doSomethingCommand = new DelegateCommand(DoSomething, CanDoSomething);
                }
                return doSomethingCommand;
            }
        }

        private void DoSomething()
        {
            Output = "did something, the input was: " + _theInput;
        }

        private bool CanDoSomething()
        {
            return true;
        }
        #endregion            

        #region ViewModelProperty: Output
        private string _output;
        public string Output
        {
            get
            {
                return _output;
            }

            set
            {
                _output = value;
                OnPropertyChanged("Output");
            }
        }
        #endregion

    }
}

1 Ответ

3 голосов
/ 05 июня 2009

Я думаю, что вы видите, потому что MenuItems не отвлекают фокус от TextBox, и по умолчанию TextBox только возвращает изменения обратно в связанный источник, когда фокус смещается от него. Поэтому, когда вы нажимаете кнопку, фокус смещается на кнопку, записывая значение TextBox обратно в _theInput. Однако при нажатии элемента MenuItem фокус остается в TextBox, поэтому значение не записывается.

Попробуйте изменить объявление TextBox на:

<TextBox Text="{Binding TheInput,UpdateSourceTrigger=PropertyChanged}"/>

Или попробуйте переключиться на DelegateCommand<t>, который может получить параметр, и передать ему текст TextBox:

<MenuItem Command="{Binding DoSomethingCommand}" 
          CommandParameter="{Binding Text,ElementName=inputTextBox}" />
...
<TextBox x:Name="inputTextBox" Text="{Binding TheInput}" />
...