gpt4 book ai didi

mvvm-light - 绑定(bind) ICommand 进入按下

转载 作者:行者123 更新时间:2023-12-04 05:38:19 25 4
gpt4 key购买 nike

所以我有一个带有基本 View 的 Windows 8 应用程序:
例子:

 <TextBox Text="{Binding UserName}"/>
<PasswordBox Text="{Binding Password}"/>
<Button Content="Sign In" Command="{Binding Login}"/>

并实现了 ICommand 的 View 模型。

public class LoginViewModel : ViewModelBase
{
public ICommand Login { get; set; }
//Other properties

public LoginViewModel()
{
Login = ExecuteLogin;
}

public void ExecuteLogin()
{
//Logic
}
}

一切正常。但是现在我想在用户在密码框中按 enter 时触发 ICommand,只是为了更好的用户体验。有人知道怎么做吗?

最佳答案

是的,你需要的是这个类:

namespace SL
{
public sealed class EnterKeyDown
{
#region Properties

#region Command

/// <summary>
/// GetCommand
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public static ICommand GetCommand(DependencyObject obj)
{
return (ICommand)obj.GetValue(CommandProperty);
}

/// <summary>
/// SetCommand
/// </summary>
/// <param name="obj"></param>
/// <param name="value"></param>
public static void SetCommand(DependencyObject obj, ICommand value)
{
obj.SetValue(CommandProperty, value);
}

/// <summary>
/// DependencyProperty CommandProperty
/// </summary>
public static readonly DependencyProperty CommandProperty =
DependencyProperty.RegisterAttached("Command", typeof(ICommand), typeof(EnterKeyDown), new PropertyMetadata(null, OnCommandChanged));

#endregion Command

#region CommandParameter

/// <summary>
/// GetCommandParameter
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public static object GetCommandParameter(DependencyObject obj)
{
return (object)obj.GetValue(CommandParameterProperty);
}

/// <summary>
/// SetCommandParameter
/// </summary>
/// <param name="obj"></param>
/// <param name="value"></param>
public static void SetCommandParameter(DependencyObject obj, object value)
{
obj.SetValue(CommandParameterProperty, value);
}

/// <summary>
/// DependencyProperty CommandParameterProperty
/// </summary>
public static readonly DependencyProperty CommandParameterProperty =
DependencyProperty.RegisterAttached("CommandParameter", typeof(object), typeof(EnterKeyDown), new PropertyMetadata(null, OnCommandParameterChanged));

#endregion CommandParameter

#region HasCommandParameter

private static bool GetHasCommandParameter(DependencyObject obj)
{
return (bool)obj.GetValue(HasCommandParameterProperty);
}

private static void SetHasCommandParameter(DependencyObject obj, bool value)
{
obj.SetValue(HasCommandParameterProperty, value);
}

private static readonly DependencyProperty HasCommandParameterProperty =
DependencyProperty.RegisterAttached("HasCommandParameter", typeof(bool), typeof(EnterKeyDown), new PropertyMetadata(false));

#endregion HasCommandParameter

#endregion Propreties

#region Event Handling

private static void OnCommandParameterChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
SetHasCommandParameter(o, true);
}

private static void OnCommandChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
{
FrameworkElement element = o as FrameworkElement;
if (element != null)
{
if (e.NewValue == null)
{
element.KeyUp -= FrameworkElementKeyUp;
}
else if (e.OldValue == null)
{
element.KeyUp += FrameworkElementKeyUp;
}
}
}

private static void FrameworkElementKeyUp(object sender, KeyRoutedEventArgs e)
{
if (e.Key == VirtualKey.Enter)
{
var o = sender as DependencyObject;
var command = GetCommand(sender as DependencyObject);

var element = e.OriginalSource as FrameworkElement;
if (element != null)
{
// If the command argument has been explicitly set (even to NULL)
if (GetHasCommandParameter(o))
{
var commandParameter = GetCommandParameter(o);

// Execute the command
if (command.CanExecute(commandParameter))
{
command.Execute(commandParameter);
}
}
else if (command.CanExecute(element.DataContext))
{
command.Execute(element.DataContext);
}
}
}
}

#endregion
}
}

XAML 命名空间:
xmlns:sl="clr-namespace:SL;"

XAML 代码:
<TextBox sl:EnterKeyDown.Command="{Binding SearchClickCommand}"                              
Text="{Binding Input, Mode=TwoWay,
NotifyOnValidationError=True, ValidatesOnDataErrors=True,
ValidatesOnExceptions=True, ValidatesOnNotifyDataErrors=True}" />

<Button Content="Search"
Command="{Binding SearchClickCommand}" />

关于mvvm-light - 绑定(bind) ICommand 进入按下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11626361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com