2

我发现这个问题可以帮助我实现我想做的部分事情:MVVM-如何在文本框中选择文本?

我的第一个问题是我有两个文本框,每个文本框都有一个“全选”按钮,但我不知道如何调整接受的答案,以便我可以独立控制每个文本框。

另外,我想为每个添加一个“复制选定的文本”按钮。

如何在坚持 MVVM 模式的同时做到这一点?

4

1 回答 1

4

您可以将两个按钮绑定到调用不同文本框上工作的不同命令,或者您可以使用 commandParameters 来区分要处理的内容。

您可以通过创建 AttachedProperty 或仅制作自定义控件来跟进链接的帖子。您需要做的基本上是为文本选择创建一个可绑定的属性。TextBox 的属性“SelectedText”听起来是个好主意,但如果您尝试在 WPF 中绑定它,则会引发错误,因为它不是 DependencyProperty。属性必须是 DependencyProperty 才能绑定到它。

因此,您创建一个,例如 IsTextSelected 作为布尔值,当它发生变化时,您的 AttachedProperty 或自定义控件会处理它并执行 SelectAll() 或 SelectedText=Text;

如果只做一个项目,我建议使用 AttachedProperty。但是,您要求自定义控件,如果对一种类型的控件进行多项功能改进,我认为应该使用自定义控件,其中它们不能在不同类型上重用。

public class SmartTextBox : TextBox
{
    public static readonly DependencyProperty IsSelectedTextProperty = DependencyProperty.RegisterAttached("IsSelectedText",
        typeof(bool), typeof(SmartTextBox), new FrameworkPropertyMetadata(false, OnIsSelectedChanged));

    public bool IsSelectedText
    {
        get { return (bool)GetValue(IsSelectedTextProperty); }
        set { SetValue(IsSelectedTextProperty, value); }
    }

    private static void OnIsSelectedChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
    {
        SmartTextBox textbox = sender as SmartTextBox;
        if ((bool)e.NewValue)
        {
            textbox.Focus();
            textbox.SelectAll();
        }
    }
}

用法:视图模型

  • 注意1我没有对值是否相同做一个 IFset以便您可以随时强制它,而不是跟踪用户所做的事情。
  • Note2 制作多个属性,IsSelectedUsername、IsSelectedFilepath 等,并绑定它们。每个 SmartTextBox 都绑定到一个,并将处理一个更改。

    public bool IsSelectedText
    {
        get { return isSelectedText; }
        set
        {
            isSelectedText = value;
            RaisePropertyChanged("IsSelectedText");
        }
    }
    
    private void SelectAllExecute()
    {
        IsSelectedText = true;
    }
    

用法:XAML

xmlns:custom="clr-namespace:xyz.View.Controls"

        <custom:SmartTextBox Text="{Binding Path=MyText}" 
                             IsSelectedText="{Binding Path=IsSelectedText}"/>

检索选定的文本,您需要向自定义控件添加可以绑定到的新依赖项属性以及控件更新它的方法。我选择控件何时离开焦点而不是更改选择,因为我希望用户在我需要知道所选文本之前执行诸如单击按钮之类的操作。

    public static readonly DependencyProperty SelectedText2Property = DependencyProperty.RegisterAttached("SelectedText2",
        typeof(string), typeof(SmartTextBox), new PropertyMetadata(""));

    public string SelectedText2
    {
        get { return (string)GetValue(SelectedText2Property); }
        set { SetValue(SelectedText2Property, value); }
    }

    protected override void OnLostFocus(RoutedEventArgs e)
    {
        SelectedText2 = this.SelectedText;
        base.OnLostFocus(e);
    }

XAML 现在绑定了它:

        <custom:SmartTextBox Text="{Binding Path=MyText}" 
                             SelectedText2="{Binding Path=TheSelectedText, Mode=OneWayToSource}"
                             IsSelectedText="{Binding Path=IsSelectedText}"/>

ViewModel 有一个哑属性(不需要引发更改事件,因为它是 OneWayToSource)

public string TheSelectedText { get; set; }

以及您可以做的任何地方

Console.WriteLine(TheSelectedText);
于 2013-08-05T14:37:28.263 回答