gpt4 book ai didi

windows-phone-7 - 在 Blend 中编辑数据模板

转载 作者:行者123 更新时间:2023-12-04 07:09:56 26 4
gpt4 key购买 nike

我正在使用 DataTemplate 将列表绑定(bind)到 ListView:

<UserControl.Resources>
<DataTemplate x:Key="eventsListItemTemplate">
<StackPanel Orientation="Vertical"
Margin="50"
Background="#007F7F7F">
<StackPanel Orientation="Horizontal">
<Image Source="/MobileCRM;component/Resources/Images/MenuIcons/icon.png"
Height="40"
Width="40"/>
<TextBlock Text="{Binding Title}"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Utworzono: " FontWeight="Bold"/>
<TextBlock Text="{Binding CreationDate}"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</UserControl.Resources>

我是这样做的:

<ListBox x:Name="EventsList" ItemsSource="{Binding}"
ItemTemplate="{StaticResource eventsListItemTemplate}" Background="#007F7F7F" SelectionChanged="EventsList_SelectionChanged" />

问题是我想使用 Blend 编辑此模板而不是手动编辑 xaml,但我不知道如何在 Blend 中打开此模板。可能吗?

最佳答案

步骤如下:

  1. 在 Blend 中打开您的项目
  2. 在左侧找到对象和时间轴
  3. 在项目树中找到您的列表框
  4. 右键单击它
  5. 编辑其他模板 -> 编辑生成的项目 (ItemTemplate) -> 编辑当前
  6. 点击右上角的圆圈按钮,将显示设计师

enter image description here

关于windows-phone-7 - 在 Blend 中编辑数据模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11829544/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com