ListView.ItemsSourceProperty.AddOwner(typeof(MyListView), new PropertyMetadata(OnItemsSourceChanged));
static void OnItemsSourceChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
MyListView view = (MyListView)sender;
//do reflection to get column names and types
//and for each column, add it to your grid view:
GridViewColumn column = new GridViewColumn();
//set column properties here...
view.Columns.Add(column);
}
private void AddListViewColumns<T>(GridView GvFOO)
{
foreach (System.Reflection.PropertyInfo property in typeof(T).GetProperties().Where(p => p.CanWrite)) //loop through the fields of the object
{
if (property.Name != "Id") //if you don't want to add the id in the list view
{
GridViewColumn gvc = new GridViewColumn(); //initialize the new column
gvc.DisplayMemberBinding = new Binding(property.Name); // bind the column to the field
if (property.PropertyType == typeof(DateTime)) { gvc.DisplayMemberBinding.StringFormat = "yyyy-MM-dd"; } //[optional] if you want to display dates only for DateTime data
gvc.Header = property.Name; //set header name like the field name
gvc.Width = (property.Name == "Description") ? 200 : 100; //set width dynamically
GvFOO.Columns.Add(gvc); //add new column to the Gridview
}
}
}
7条答案
按热度按时间sshcrbum1#
您可以使用[附加属性]将数据行动态加入至ListView。请参阅CodeProject上的这篇文章,它会详细说明...
WPF DynamicListView - Binding to a DataMatrix
8fsztsew2#
来自MSDN:
np8igboo3#
我会尝试以下方法:
A)您需要让列表框显示网格视图-我相信您已经做到了这一点
B)为GridViewColumnHeader定义一个样式:
在我的例子中,我设置了一大堆其他属性,但在基本场景中-您需要Loaded event. Clicked -如果您希望添加排序和筛选功能,这将非常有用。
C)在你的列表视图代码中,将模板与你的网格视图绑定:
D)然后在OnHeaderLoaded处理程序中,可以根据列的数据设置适当的模板
//在此处选择并应用数据模板。
E)我猜您还需要获得ItemsSource依赖项属性的所有权并处理它的changed事件。
GridViewColumn类本身没有太多属性,因此您可能希望使用附加属性在其中添加一些信息-例如,像唯一的列标记- header很可能用于本地化,您将不使用此属性。
一般来说,这种方法虽然相当复杂,但可以让您轻松地扩展列表视图功能。
31moq8wy4#
使用DataTemplateselector选择一个预定义的模板(属于相同的DataType)并将选择器应用于ListView。可以使用具有不同列的任意多个DataTemplate。
w9apscun5#
您可以使用DataTemplateSelector返回您在代码中动态创建的DataTemplate。但是,这比使用XAML中的预定义模板要繁琐和复杂一些,但仍然是可能的。请看下面的示例:http://dedjo.blogspot.com/2007/03/creating-datatemplates-from-code.html
gkl3eglg6#
根据经验,我建议您尽量避免使用动态数据模板.... a.而不是使用此处给出的建议来显式创建ListView列,而不是尝试动态创建DataTemplate。
原因是FrameworkElementFactory(或在运行时生成DataTemplates的任何类名)使用起来有些笨拙(并且不赞成使用XAML作为动态模板)-无论哪种方式都会对性能造成影响。
s6fujrry7#
此函数将将列绑定到指定的类,并动态设置标题、绑定、宽度和字符串格式。
假设您的XAML中有一个名称为“GvFoo”的GridView,您希望将其绑定到类FOO。然后,您可以通过将类“FOO”和GridView“GvFoo”作为参数传递到MainWindow.xaml.cs中来调用该函数**
您的MainWindow.xaml文件应该包括以下内容