Silverlight:设置值的语法问题

发布于 2024-10-06 18:39:48 字数 1189 浏览 0 评论 0原文

我正在使用 Silverlight 4。以下 XAML 工作正常:

<UserControl.Resources>
    <ItemsPanelTemplate x:Key="WrapPanelTemplate">
        <toolkit:WrapPanel />
    </ItemsPanelTemplate>
</UserControl.Resources>

    <ItemsControl x:Name="restOfHits" 
                  ItemsSource="{Binding RestOfHits}" 
                  ItemsPanel="{StaticResource WrapPanelTemplate}"
                  ItemTemplate="{StaticResource FileTemplate}"
                  Width="500"
                  Margin="0,50,0,0"
                  />

但是,以下导致 VS 抱怨:

    <ItemsControl x:Name="restOfHits" 
                  ItemsSource="{Binding RestOfHits}" 
                  ItemTemplate="{StaticResource FileTemplate}"
                  Width="500"
                  Margin="0,50,0,0"
                  >
        <ItemsControl.ItemsPanel>
            <toolkit:WrapPanel />
        </ItemsControl.ItemsPanel>
    </ItemsControl>

错误:

属性“ItemsPanel”不支持 “WrapPanel”类型的值。

这是为什么呢?如果我不想使用资源,指定 ItemsControl 应使用 WrapPanel 的正确方法是什么?

I'm using Silverlight 4. The following XAML works fine:

<UserControl.Resources>
    <ItemsPanelTemplate x:Key="WrapPanelTemplate">
        <toolkit:WrapPanel />
    </ItemsPanelTemplate>
</UserControl.Resources>

    <ItemsControl x:Name="restOfHits" 
                  ItemsSource="{Binding RestOfHits}" 
                  ItemsPanel="{StaticResource WrapPanelTemplate}"
                  ItemTemplate="{StaticResource FileTemplate}"
                  Width="500"
                  Margin="0,50,0,0"
                  />

However, the following causes VS to complain:

    <ItemsControl x:Name="restOfHits" 
                  ItemsSource="{Binding RestOfHits}" 
                  ItemTemplate="{StaticResource FileTemplate}"
                  Width="500"
                  Margin="0,50,0,0"
                  >
        <ItemsControl.ItemsPanel>
            <toolkit:WrapPanel />
        </ItemsControl.ItemsPanel>
    </ItemsControl>

The error:

Property 'ItemsPanel' does not support
values of type 'WrapPanel'.

Why is this? What is the proper way to specify that the ItemsControl should use a WrapPanel if I don't want to use Resources?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

删除会话 2024-10-13 18:39:48

因为 ItemsPanel 期望收到 ItemsPanelTemplate 而不是其他任何内容。
您在第一个样本中这样做,但在第二个样本中则不然。你的第二个应该看起来像这样:-

<ItemsControl x:Name="restOfHits"  
              ItemsSource="{Binding RestOfHits}"  
              ItemTemplate="{StaticResource FileTemplate}" 
              Width="500" 
              Margin="0,50,0,0" 
              > 
    <ItemsControl.ItemsPanel> 
        <ItemsPanelTemplate>  
            <toolkit:WrapPanel />  
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel> 
</ItemsControl> 

Because ItemsPanel is expecting to receive an ItemsPanelTemplate and not anything else.
You are doing that in your first sample but not in your second. Your second should look like this:-

<ItemsControl x:Name="restOfHits"  
              ItemsSource="{Binding RestOfHits}"  
              ItemTemplate="{StaticResource FileTemplate}" 
              Width="500" 
              Margin="0,50,0,0" 
              > 
    <ItemsControl.ItemsPanel> 
        <ItemsPanelTemplate>  
            <toolkit:WrapPanel />  
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel> 
</ItemsControl> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文