我整天都在尝试这个,但没有任何运气。我能够显示UserControl,但是我无法弄清楚为什么Columns不会显示,即使我已经在XAML中设置了它们。此外,我不确定数据是否显示,因为表单空白。
这是我从其他程序调用的类库的一部分。但是,它始终显示一个空白表单,并且没有任何内容正在更新。
以下是我的UserControl代码。
public partial class DisplayData : UserControl
{
ObservableCollection<Data> _DataCollection = new ObservableCollection<Data>();
public DisplayData()
{
InitializeComponent();
Window window = new Window();
window.Content = new UserControl();
window.Show();
}
public void AddDataToList(int ID, string Name)
{
_DataCollection.Add(new Data
{
StudentID = ID,
StudentName = Name
});
}
public ObservableCollection<Data> DataCollection { get { return _DataCollection; } }
}
public struct Data
{
public int StudentID { get; set; }
public string StudentName { get; set; }
}
以下是我如何称呼它:
class Program
{
[STAThread]
static void Main(string[] args)
{
DisplayData displayData = new DisplayData();
displayData.AddDataToList(2, "John");
System.Threading.Thread.Sleep(5000);
}
}
和xaml:
<UserControl x:Class="ConsoleApplication1.DisplayData"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="100" d:DesignWidth="210">
<StackPanel>
<ListView ItemsSource="{Binding DataCollection}">
<ListView.View>
<GridView>
<GridViewColumn Width="100" Header="ID" DisplayMemberBinding="{Binding StudentID}" />
<GridViewColumn Width="100" Header="Name" DisplayMemberBinding="{Binding StudentName}" />
</GridView>
</ListView.View>
</ListView>
</StackPanel>
</UserControl>
EDIT 我还想补充一点:
另外,不确定这是否有帮助,但我已将此作为WPF UserControl添加到我现有的项目中。
答案 0 :(得分:1)
如果没有看到所有代码,我无法判断这是否是问题(或唯一问题),但您需要绑定DataContext
属性。您的列表视图知道列绑定到某些属性,但它们不知道这些属性的来源(类)。
您还需要查看INotifyPropertyChanged(可能不适用于此项目,但一般情况下)。这有点需要解释,所以你可以查看它的功能,但它是WPF绑定的重要组成部分。
http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.datacontext.aspx
您最好的举动是找到一个关于绑定的好教程以及如何设置列表视图。没有一些背景知识,很难真正弄明白。无论如何,这对我来说。希望这有用。
答案 1 :(得分:0)
我不是XAML专业人士,但在文档中他们有不同的绑定文本:http://msdn.microsoft.com/en-us/library/ms750972.aspx
尝试
DisplayMemberBinding="{Binding Path=StudentID}"
答案 2 :(得分:0)
您是否尝试过更改
public struct Data
进入
public class Data
我今天也一直在ListView上工作,如果有一件事我可以说它是挑剔的。它可能只是不想接受结构。
编辑:这是我的工作ListView
<ListView Grid.Column="2" HorizontalAlignment="Stretch" Margin="0" Name="listTableItem" VerticalAlignment="Stretch">
<ListView.View>
<GridView>
<GridViewColumn Header="Name"
DisplayMemberBinding="{Binding Name}"
Width="75"
/>
<GridViewColumn Header="Value"
DisplayMemberBinding="{Binding Value}"
Width="500"
/>
</GridView>
</ListView.View>
</ListView>
答案 3 :(得分:0)
我认为您需要将DataContext绑定到代码隐藏。见下文。
<UserControl x:Class="ConsoleApplication1.DisplayData"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
DataContext="{Binding RelativeSource={RelativeSource Self}}"
mc:Ignorable="d"
d:DesignHeight="100" d:DesignWidth="210">
答案 4 :(得分:0)
正如其他几张海报所说,你需要设置DataContext(如图所示):
<UserControl x:Class="ConsoleApplication1.DisplayData"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
DataContext="{Binding RelativeSource={RelativeSource Self}}"
mc:Ignorable="d"
d:DesignHeight="100" d:DesignWidth="210">
另一个问题是你没有尝试显示控件。下面的代码创建一个窗口对象,并将您创建的控件放置为内容。之后你只需要调用Show()或ShowDialog(),你应该得到你工作的结果。
[STAThread]
static void Main(string[] args)
{
DisplayData displayData = new DisplayData();
displayData.AddDataToList(2, "John");
Window window = new Window();
window.Content = displayData;
window.ShowDialog();
}