修改很简单,WMAppManifest.xml 中加入 BitsPerPixel="32" 即可
<App xmlns="" BitsPerPixel="32" ProductID="{64aaeffa-ad62-4000-9777-7ef704e2207e}" Title="Color16Bits" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="Color16Bits author" Description="Sample description" Publisher="Color16Bits">
测试代码:
页面中放了一个渐变背景
<Grid.Background>
<LinearGradientBrush EndPoint="0.5,0" StartPoint="0.5,1">
<GradientStop Color="#FFF24D1C" Offset="0" />
<GradientStop Color="#FF196EF5" Offset="1" />
</LinearGradientBrush>
</Grid.Background>修改前:

修改后:


本文详细介绍了如何通过修改WMAppManifest.xml文件中的BitsPerPixel属性为32,从而实现在Windows应用中显示32位颜色的效果,并提供了一段使用LinearGradientBrush实现渐变背景的代码示例。
319

被折叠的 条评论
为什么被折叠?



