Как очистить TextBox с помощью MVVM после запуска команд - PullRequest
0 голосов
/ 03 июня 2018

У меня есть MainWindow с элементом управления TextBox.

<Grid>
        <TextBox x:Name="messageBox" Margin="252,89,277,300">
            <TextBox.InputBindings>
                <KeyBinding Key="Enter"
                            Command="{Binding TextCommand}"
                            CommandParameter="{Binding Text, ElementName=messageBox}"/>
            </TextBox.InputBindings>
        </TextBox>
    </Grid>

И, как вы можете видеть, я связал клавишу Enter, когда я нажимаю Enter, он запрашивает MessageBox с предоставленным мною текстом.в текстовом поле.У меня вопрос .. Как я могу очистить текстовое поле после нажатия Enter?Я не хочу вызывать событие в элементе управления, потому что это противоречит цели MVVM, оно также загромождает мой MainWindow.cs

. Как вы можете видеть, я установил DataContext в моем MainWindow какитак ..

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        DataContext = new ServerViewModel();
    }
}

А вот мой ServerViewModel.cs

class ServerViewModel : INotifyPropertyChanged
    {
        public TextBoxCommand TextCommand { get; }
        public ServerViewModel()
        {
            TextCommand = new TextBoxCommand(SendMessage);
        }

        private void SendMessage(string parameter)
        {
            MessageBox.Show(parameter);
            parameter = "";
        }


        public event PropertyChangedEventHandler PropertyChanged;
        [NotifyPropertyChangedInvocator]
        protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
        }
    }

И команда, если это стоит посмотреть.

class TextBoxCommand : ICommand
    {
        public Action<string> _sendMethod;

        public TextBoxCommand(Action<string> SendMethod)
        {
            _sendMethod = SendMethod;
        }
        public bool CanExecute(object parameter)
        {
            return true;
        }

        public void Execute(object parameter)
        {
            _sendMethod.Invoke((string)parameter);
        }

        public event EventHandler CanExecuteChanged;
    }

1 Ответ

0 голосов
/ 04 июня 2018

Вы можете привязать свой TextBox к свойству в ViewModel и сбросить TextBox, просто установив свойство пустым.

Привязка:

<TextBox x:Name="messageBox" Text="{Binding TextBoxInput, Mode=TwoWay}">

Новое свойство в ViewModel:

    public string TextBoxInput
    {
        get { return _textBoxInput; }
        set
        {
            _textBoxInput = value;
            OnPropertyChanged(nameof(TextBoxInput));
        }
    }
    private string _textBoxInput;

TextBox сбрасывается здесь:

    private void SendMessage(string parameter)
    {
        MessageBox.Show(parameter);
        TextBoxInput = "";
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...