xaml – 属性内容设置多次
发布时间:2020-11-17 04:21:50 所属栏目: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系统·添加Python import 的库/模块路径
- windows-installer – installshield和windowsin
- windows-8 – 地铁样式Windows 8应用程序是否支持
- _asm int 3 软件中断
- windows-ce – 确定Windows CE可执行文件使用的1
- windows-10 – Windows 10移动设备错误:DEP6200
- windows-phone-8 – 新的Live磁贴在Windows Phon
- 06、林信任快捷方式
- xaml – Windows 8 App,更改BackButtonStyle的颜
- DLL符号_FooBar @ 16中的数字16代表什么?
热点阅读