2

我有一个包含不同类型对象的列表:

    List<object> myList = new List<object>();
    DateTime date = DateTime.Now;
    myList.Add(date);
    int digit = 50;
    myList.Add(digit);
    myList.Add("Hello World");
    var person = new Person() { Name = "Name", LastName = "Last Name", Age = 18 };
    list.ItemsSource = myList;

    public class Person
    {
         public string Name { get; set; }
         public string LastName { get; set; }
         public int Age { get; set; }
    }

我想在ListBox不同类型的控件中看到它们。例如:DatePickerfor DateTime, TextBlockfor string, TextBoxfor Person's Name and LastName...

是否可以使用 来完成此任务XAML

帮助表示赞赏。

4

1 回答 1

3
<Window x:Class="MiscSamples.DataTemplates"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        Title="DataTemplates"
        Height="300"
        Width="300">
  <Window.Resources>

    <!-- DataTemplate for strings -->
    <DataTemplate DataType="{x:Type sys:String}">
      <TextBox Text="{Binding Path=.}" />
    </DataTemplate>

    <!-- DataTemplate for DateTimes -->
    <DataTemplate DataType="{x:Type sys:DateTime}">
      <DataTemplate.Resources>
        <DataTemplate DataType="{x:Type sys:String}">
          <TextBlock Text="{Binding Path=.}" />
        </DataTemplate>
      </DataTemplate.Resources>
      <DatePicker SelectedDate="{Binding Path=.}" />
    </DataTemplate>


    <!-- DataTemplate for Int32 -->
    <DataTemplate DataType="{x:Type sys:Int32}">
      <Slider Maximum="100"
              Minimum="0"
              Value="{Binding Path=.}"
              Width="100" />
    </DataTemplate>
  </Window.Resources>
  <ListBox ItemsSource="{Binding}" />
</Window>

代码背后:

 public partial class DataTemplates : Window
    {
        public DataTemplates()
        {
            InitializeComponent();

            var myList = new List<object>();
            myList.Add(DateTime.Now);
            myList.Add(50);
            myList.Add("Hello World");

            DataContext = myList;
        }
    }

结果:

在此处输入图像描述

如您所见,完全没有理由使用代码来操作 WPF 中的 UI 元素(除了一些非常特殊的情况)

编辑:

请注意,您通常不会DataTemplate在命名空间内创建一个 for 类System(例如System.String。这只是为了给您一个示例。如果您真的需要这个,您可能必须ViewModel为每种类型创建一个。

于 2013-04-12T17:31:40.107 回答