我在名为HistoryStatistics的类中有一个ListView,其模板如下所示。每个项目都有一个按钮和两个文本块。
<ListView x:Name="HistoryLV" Grid.Row="1" Grid.Column="1" Margin="20,20,20,20">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Button/>
<TextBlock x:Name="historyDatesTBlock" Text="{Binding}" Foreground="Coral"/>
<TextBlock x:Name="cycleLengthTBlock" Foreground="AliceBlue"/>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
现在我需要使用两个不同的值来绑定文本框的数据。我有一个名为CycleManager的类。它有一个DateTime数组。我想将数组的前n个值数据绑定到第一个文本块。
在HistoryStatistics的构造函数中,我有一个名为LoadListView的函数。
public void LoadListView()
{
CycleManager cycMan = CycleManager.Instance;
DateTime[] items = cycMan.GetHistoryArray();
HistoryList = new ObservableCollection<DateTime>(items);
HistoryLV.DataContext = HistoryList;
}
这是绑定DateTime的正确方法吗?我尝试添加ToString但是没有显示日期。
有没有办法在后面的代码中创建ListView,并通过运行forloop将各个项目与我想要的值绑定?
答案 0 :(得分:1)
请尝试将以下行添加到LoadListView方法中。我自己没有尝试过,因为我的系统上没有安装Windows 8。
HistoryLV.ItemsSource = HistoryList;
答案 1 :(得分:1)
尝试:
CycleManager cycMan = CycleManager.Instance;
DateTime[] items = cycMan.GetHistoryArray();
string[] list = new string[items.Length];
for(int i=0; i<items.Length; i++)
{
list[i] = items[i].ToString("**The DateTime format you want**");
}
HistoryList = new ObservableCollection<string>(list);
HistoryLV.ItemsSource = HistoryList;