Windows Apps项目不支持Datagrid

问题描述 投票:0回答:3

我试图跟随这个SO answer,但我是Visual Studio抱怨Windows Apps项目不支持Datagrid?我可以使用Datagrid的替代方案吗?

最后,我想创建一个按钮网格,对应于List菜单列表中的MenuItem。

我是数据绑定的新手,所以如果有人有更好的东西我应该看,请告诉我。

<Page
    x:Class="App1.Pages.MenuItemsPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App1.Pages"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Page.Resources>
        <CollectionViewSource x:Key="MenuItemsCollectionViewSource" Source="{Binding MenuItems}"/>
    </Page.Resources>

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>
        <DataGrid Grid.Row ="0" ItemsSource ="{Binding Source = {StaticResource MenuItemsCollectionViewSource}}" />
    </Grid>
</Page>
c# wpf xaml datagrid
3个回答
0
投票

我想到了。当我在使用Pages时,我应该使用GridView。


0
投票

没有控制权。可能存在第三方控件,或者您可以通过模板化ListView来获得类似的布局。


0
投票

当我将Targer framework改为.NET Framework 4.5时,同样的问题解决了我。最初是NET Framework 3。它可以在项目属性中更改。

© www.soinside.com 2019 - 2024. All rights reserved.