经过20多年的Windows编程和两天的WPF,我觉得我一无所知: - )
我的第一个WPF程序非常简单:从资源管理器中删除一些文件,它们的名称显示在TextBox控件中。 (它适用于ListBox,但这不是我想要的。当然在Drop事件中手动添加行也可以 - 但我想了解Binding方法..)
所以我写了一个转换器,但不知何故它没有被使用(断点不会被击中)并且没有任何显示。
这应该是一件小事,或者我可能完全偏离轨道。找到了很多相似的例子,我可以将它们拼凑在一起,但仍然无法使它工作。
(我可能不会需要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,我怀疑绑定问题是:
<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没有更多要绑定的数据属性和拖放代码,这是有效的。
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
调用的重要性。
答案 0 :(得分:3)
要让Binding
工作,您需要将 Window's DataContext
分配给属性所在的实例,在您的情况下,这是Window类本身。
因此在构造函数中设置DataContext,它应该可以正常工作:
public MainWindow()
{
InitializeComponent();
fileNames = new List<string>();
DataContext = this;
}
或强>
您必须在绑定中使用 ElementName
显式解析XAML的绑定:
<Window x:Name="myWindow">
....
<TextBox Text="{Binding Path=fileNames, ElementName=myWindow,
Converter={StaticResource converter1}}"/>
要使XAML方法起作用,您必须在加载XAML之前初始化列表,即在 InitializeComponent
被调用之前。
fileNames = new List<string>();
InitializeComponent();
答案 1 :(得分:2)
必须将TextBox的DataContext设置为绑定数据。像这样:
public MainWindow()
{
InitializeComponent();
fileNames = new List<string>();
this.tb_files.DataContext = this;
}
答案 2 :(得分:0)
这是应该适合您的一般模式。如果您有任何疑问,请联系我。祝你好运! 〜贾斯汀
<Window xmlns:vm="clr-namespace:YourProject.YourViewModelNamespace"
xmlns:vc="clr-namespace:YourProject.YourValueConverterNamespace>
<Window.Resources>
<vc:YourValueConverter x:key="YourValueConverter" />
</Window.Resources>
<Window.DataContext>
<vm:YourViewViewModel />
</Window.DataContext>
<TextBox Text="{Binding MyItems, Converter={StaticResource YourValueConverter}}"/>
</Window>
public class YourViewViewModel : ViewModelBase
{
ObservableCollection<string> _myItems;
ObservableCollection<string> MyItems
{
get { return _gameProfileListItems; }
set { _gameProfileListItems = value; OnPropertyChanged("MyItems"); }
}
public void SetMyItems()
{
// go and get your data here, transfer it to an observable collection
// and then assign it to this.GameProfileListItems (i would recommend writing a .ToObservableCollection() extension method for IEnumerable)
this.MyItems = SomeManagerOrUtil.GetYourData().ToObservableCollection();
}
}
public class YourView : Window
{
YourViewViewModel ViewModel
{
{ get return this.DataContext as YourViewViewModel; }
}
public void YourView()
{
InitializeComponent();
InitializeViewModel();
}
void InitializeViewModel()
{
this.ViewModel.SetMyItems();
}
}