c# - 将 List<string> 绑定(bind)到 TextBox

标签 c# wpf binding textbox ivalueconverter

经过 20 多年的 Windows 编程和两天的 WPF,我觉得我一无所知 :-)

我的第一个 WPF 程序非常简单:从资源管理器中删除一些文件,它们的名称显示在 TextBox 控件中。 (它适用于 ListBox,但这不是我想要的。当然,在 Drop 事件中手动添加行也可以 - 但我想了解绑定(bind)方式..)

所以我写了一个转换器,但不知何故它没有被使用(断点不会被命中)并且什么都没有显示。

这应该是一件小事,或者我完全偏离了轨道。找到了许多类似事情的例子,我将这些例子拼凑在一起,但仍然无法让它发挥作用。

(我可能不需要 ConvertBack,但还是把它写下来了..)

这里是转换器类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;

namespace WpTest02
{
  public class ListToTextConverter : IValueConverter
  {
      public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            StringBuilder sb = new StringBuilder();
            foreach (string s in (List<string>)value) sb.AppendLine(s);
            return sb.ToString();
        }

      public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            string[] lines = ((string)value).Split(new string[] { @"\r\n" }, StringSplitOptions.RemoveEmptyEntries);
            return lines.ToList<String>();
        }
   }

}

MainWindow.xaml,我怀疑存在绑定(bind)问题:

<Window x:Class="WpTest02.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpTest02"
        Title="MainWindow" Height="350" Width="525"
        >
    <Window.Resources>
        <local:ListToTextConverter x:Key="converter1" />
    </Window.Resources>

    <Grid >
        <TextBox Name="tb_files" Margin="50,20,0,0"  AllowDrop="True" 
                 PreviewDragOver="tb_files_PreviewDragOver" Drop="tb_files_Drop" 
                 Text="{Binding Path=fileNames, Converter={StaticResource converter1} }"
                 />
    </Grid>
</Window>

Codebehind 只需要绑定(bind)的数据属性和拖放代码即可。

using System; 
//etc ..

namespace WpTest02
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            fileNames = new List<string>();
        }


        public List<string> fileNames { get; set; }

        private void tb_files_Drop(object sender, DragEventArgs e)
        {
            var files = ((DataObject)e.Data).GetFileDropList();
            foreach (string s in files) fileNames.Add(s);

            // EDIT: this doesn't help ? Wrong!                     
            // EDIT: this is actually necessary! :                     
            tb_files.GetBindingExpression(TextBox.TextProperty).UpdateTarget();

            // this obviosly would work:
            //foreach (string s in files) tb_files.Text += s + "\r\n";
        }

        private void tb_files_PreviewDragOver(object sender, DragEventArgs e)
        {
            e.Handled = true;
        }

    }
}

注意:我已经编辑了最后一段代码以强调 UpdateTarget 调用的重要性。

最佳答案

要使 Binding 工作,您需要将 Window's DataContext 分配给属性所在的实例,在您的情况下是 Window 类本身。

所以在构造函数中设置 DataContext 应该可以正常工作:

public MainWindow()
{
    InitializeComponent();
    fileNames = new List<string>();
    DataContext = this;
}

您必须在绑定(bind)中使用 ElementName 从 XAML 显式解析绑定(bind):

<Window x:Name="myWindow">
  ....
  <TextBox Text="{Binding Path=fileNames, ElementName=myWindow,
                          Converter={StaticResource converter1}}"/>

要使 XAML 方法正常工作,您必须在加载 XAML 之前初始化列表,即在调用 InitializeComponent 之前。

fileNames = new List<string>();
InitializeComponent();

关于c# - 将 List<string> 绑定(bind)到 TextBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23169330/

相关文章:

c# - 将集合绑定(bind)到 Ninject

安卓服务交互

binding - Clojure 绑定(bind)不起作用

reflection - 按名称检索属性

c# - 如何模拟多个查询字符串?

C# .NET WPF 应用程序随机挂起 (WgxConnection_ShouldForceSoftwareForGraphicsStreamClient)

c# - TemplateBinding 不适用于扩展 ComboBox 的自定义控件中的 SelectedItem

C# - 检查是否按下了特定的键

c# - .NET XmlSerializer 和多维数组

wpf - 命令快捷方式文本字符串格式