0

我正在努力解决这个问题,我有一个列表集合,其中包含我试图绑定到 GridView 的以下内容;

  public class GetMenu
    {
        public string titleName { get; set; }
        public string imagePath { get; set; }
    }

    List<GetMenu> Menu = new List<GetMenu>()
    {
        new GetMenu(){titleName = "one", imagePath = "image.jpg"},
        new GetMenu(){titleName = "one", imagePath = "image.jpg"}    
    };

我的 XAML 代码看起来像;

  <GridView x:Name="MenuViewGrid" TabIndex="1"
        Grid.RowSpan="2" Padding="116,136,116,46" Margin="0,0,50,0" VerticalAlignment="Center" 
        SelectionMode="None" IsSwipeEnabled="false" IsItemClickEnabled="True" ItemClick="ItemView_ItemClick">
        <GridView.ItemTemplate>
            <DataTemplate>
            <Grid HorizontalAlignment="Left" Width="275" Height="425" >
                <Border Background="{StaticResource ListViewItemPlaceholderBackgroundThemeBrush}">
                        <Image Source="{Binding Path=imagePath}" Stretch="UniformToFill"/>
                </Border>
                <StackPanel VerticalAlignment="Bottom" Background="{StaticResource ListViewItemOverlayBackgroundThemeBrush}">
                    <TextBlock Text="{Binding Path=titleName}" Foreground="{StaticResource ListViewItemOverlayForegroundThemeBrush}" FontSize="25"  Height="60" Margin="15,0,15,0"/>
                </StackPanel>
            </Grid>
            </DataTemplate>
        </GridView.ItemTemplate>
    </GridView>

在我的脑海中,我认为我可以做一个简单的;

MenuViewGrid.ItemsSource = GetMenu;

但是在执行上述操作时,我收到一条错误消息,说它是一种类型,但我正在尝试将其用作变量。我无法理解这一点,因为我以前在 Windows Phone 上使用过代码。

4

1 回答 1

0

替换GetMenuMenuGetMenu是你的班级,Menu是你的名单):

MenuViewGrid.ItemsSource = Menu;
于 2013-02-02T12:23:53.193 回答