xaml – 属性内容设置多次
发布时间:2020-11-17 04:37:18 所属栏目:Windows 来源:互联网
导读:我的代码如下所示,我收到以下错误。 错误: “物业”内容“不止一次” 码: controls:PanoramaItem Header=headlines TextBlock Text={Binding Tones} / !--Double line list with image placeholder and text wrappin
|
我的代码如下所示,我收到以下错误。 错误: 码: <controls:PanoramaItem Header="headlines">
<TextBlock Text="{Binding Tones}" />
<!--Double line list with image placeholder and text wrapping-->
<ListBox Margin="0,-12,0" ItemsSource="{Binding Tones}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="0,17">
<!--Replace rectangle with image-->
<Image Source="{Binding ImageUrl}" Height="75" Width="100" Margin="12,10,9,0" VerticalAlignment="Top"/>
<!--<Rectangle Height="100" Width="100" Fill="#FFE5001b" Margin="12,0"/>-->
<StackPanel Width="311">
<TextBlock Text="{Binding Title}" TextWrapping="Wrap" Style="{StaticResource PhoneTextLargeStyle}"/>
<!--<TextBlock Text="{Binding LineTwo}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>-->
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PanoramaItem>
一个PanoramaItem只能有一个子控件,但是你目前有一个TextBlock和一个ListBox。要解决这个问题,只需添加另一个父控件来保存TextBlock和ListBox(如StackPanel或Grid)。例如:
<controls:PanoramaItem Header="headlines">
<grid>
<TextBlock Text="{Binding Tones}" />
<!--Double line list with image placeholder and text wrapping-->
<ListBox Margin="0,0" ItemsSource="{Binding Tones}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="0,17">
<!--Replace rectangle with image-->
<Image Source="{Binding ImageUrl}" Height="75" Width="100" Margin="12,0" VerticalAlignment="Top"/>
<!--<Rectangle Height="100" Width="100" Fill="#FFE5001b" Margin="12,0"/>-->
<StackPanel Width="311">
<TextBlock Text="{Binding Title}" TextWrapping="Wrap" Style="{StaticResource PhoneTextLargeStyle}"/>
<!--<TextBlock Text="{Binding LineTwo}" TextWrapping="Wrap" Margin="12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>-->
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</grid>
</controls:PanoramaItem> (编辑:南阳站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
推荐文章
站长推荐
- 在Windows上使用clang编译c 11程序时出错
- windows – PSExec如何以SYSTEM用户身份运行应用
- Windows – Win7 Virtualbox在尝试启动虚拟机时出
- windows – 如何停止’gem’实用程序访问我的主目
- 飞溅屏幕 – 通用窗口10个应用程序的Splash屏幕
- pyshark无法在Windows 7(python)上捕获数据包
- windows-phone-8 – 使用WNS for windows phone
- jboss7.x – 无法登录到windows上的jboss 7.1管理
- 如何正确使用MSBuild社区任务库在.NET dll上设置
- 如何在Windows上确定是否安装了C/C++编译器
热点阅读
