У меня есть 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;
}