3

如何使用文件隐藏代码(即使用 C# 而不是 xaml)在 win8 (WinRT) 应用程序中创建 DataTemplate。

4

1 回答 1

4

如果您想根据所显示的内容类型创建模板,我可以理解为什么这可能很有用。完成这项工作的关键是 Windows.UI.Xaml.Markup.XamlReader.Load()。它接受一个包含数据模板的字符串并将其解析为 DataTemplate 对象。然后,您可以将该对象分配到您想要使用它的任何位置。在下面的示例中,我将其分配给 ListView 的 ItemTemplate 字段。

这是一些 XAML:

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <ListView x:Name="MyListView"/>
</Grid>

这是创建 DataTemplate 的代码隐藏:

public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        var items = new List<MyItem>
        {
            new MyItem { Foo = "Hello", Bar = "World" },
            new MyItem { Foo = "Just an", Bar = "Example" }
        };
        MyListView.ItemsSource = items;

        var str = "<DataTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\">" +
                "<Border Background=\"Blue\" BorderBrush=\"Green\" BorderThickness=\"2\">" +
                    "<StackPanel Orientation=\"Vertical\">" +
                        "<TextBlock Text=\"{Binding Foo}\"/>" +
                        "<TextBlock Text=\"{Binding Bar}\"/>" +
                    "</StackPanel>" +
                "</Border>" +
            "</DataTemplate>";
        DataTemplate template = (DataTemplate)Windows.UI.Xaml.Markup.XamlReader.Load(str);
        MyListView.ItemTemplate = template;
    }
}

public class MyItem
{
    public string Foo { get; set; }
    public string Bar { get; set; }
}
于 2012-09-07T22:51:29.780 回答