背景项目时,悬停任何项目,并清除所有背景,符号(V)在右上的列表视图时,选择.如果你不介意的话,我想问一下,微软开发公司(上传应用程序到商店)每年要付多少钱?他们知道在App.xml文件中修改它的代码。
发布于 2014-08-05 11:34:54
在“列表视图项”样式中,删除选中标记的边框。
<Border x:Name="SelectedCheckMarkOuter"
IsHitTestVisible="False"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="4">
<Grid x:Name="SelectedCheckMark" Opacity="0" Height="40" Width="40">
<Path x:Name="SelectedEarmark" Data="M0,0 L40,0 L40,40 z" Fill="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}" Stretch="Fill"/>
<Path Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,5.5,5.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
</Grid>
</Border>然后,在可视状态转换中,删除引用已删除元素的情节提要。
<FadeOutThemeAnimation TargetName="SelectedCheckMarkOuter" />...etc
https://stackoverflow.com/questions/25137643
复制相似问题