gpt4 book ai didi

silverlight - 如何正确使用 WP7 sdk 提供的图标?

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

SDK 中提供了“浅色”或“深色”的图标,具体取决于手机上设置的主题。当主题更改时,应用程序栏上的图标会自动更改。此外,当您按下按钮时,无论您使用哪个主题,图像都会反转(因此它仍然可见)。我可以很容易地弄清楚如何根据当前主题更改图标。然而,不容易弄清楚的是如何在按下按钮时更改图标。

要更清楚。假设我正在使用“黑暗”主题。我创建了一个使用深色图标的按钮。按下按钮时,背景为白色,但图标本身保持白色,因此不可见。在应用程序栏上,图标将变为黑色,这在白色背景下当然可见。

这有意义吗?有人知道怎么修这个东西吗?

最佳答案

您可以使用单个图标作为 OpacityMask,而不是使用浅色和深色图标。这只是一个示例,您可能希望将其制成一个单独的控件以使图标设置更整洁,如果需要,您可以为 ToggleButton 提供 C# 代码。还有this series可能有一些兴趣。

<Style x:Key="IconButton" TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderBrush" Value="{StaticResource PhoneForegroundBrush}"/>
<Setter Property="Foreground" Value="{StaticResource PhoneForegroundBrush}"/>
<Setter Property="BorderThickness" Value="{StaticResource PhoneBorderThickness}"/>
<Setter Property="FontFamily" Value="{StaticResource PhoneFontFamilySemiBold}"/>
<Setter Property="FontSize" Value="{StaticResource PhoneFontSizeMediumLarge}"/>
<Setter Property="Padding" Value="10,3,10,5"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid Background="Transparent">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal"/>
<VisualState x:Name="MouseOver"/>
<VisualState x:Name="Pressed">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="ContentContainer">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneBackgroundBrush}"/>
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="ButtonBackground">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneForegroundBrush}"/>
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="BorderBrush" Storyboard.TargetName="ButtonBackground">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneForegroundBrush}"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="Disabled">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="ContentContainer">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneDisabledBrush}"/>
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="BorderBrush" Storyboard.TargetName="ButtonBackground">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneDisabledBrush}"/>
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="ButtonBackground">
<DiscreteObjectKeyFrame KeyTime="0" Value="Transparent"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Border x:Name="ButtonBackground" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" CornerRadius="0" Margin="{StaticResource PhoneTouchTargetOverhang}">
<Grid x:Name="ContentContainer" OpacityMask="{TemplateBinding Content}" Background="{TemplateBinding Foreground}"/>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

用法
<Button Style="{StaticResource IconButton}" >
<ImageBrush ImageSource="appbar.feature.search.rest.png" Stretch="None"/>
</Button>

解释:一个 OpacityMask使用元素画笔的 alpha 值,因为它需要画笔,您可以使用渐变或 ImageBrush。在这种情况下,矩形的 ContentContainer 采用所提供图像的形状,因为仅使用 alpha channel ,它可以是您想要的任何颜色。 ContentContainer 使用按下时样式更改的前景色,您可以通过更改按钮前景色来更改图标颜色。此样式基本上是默认样式,但使用带有 OpacityMask 的 Grid 代替 ContentControl。

通常,您不会将 ImageBrush 直接放在按钮中,但这是作为 Silverlight v3 中某些绑定(bind)限制的快速解决方法。或者,您可以使用具有 Uri 属性的自定义控件来更新蒙版的 Brush 属性。该样式将使用自定义 Brush 属性作为 OpacityMask 而不是 Button.Content。由于 OpacityMask 仅使用 alpha channel ,此方法不适用于彩色图像。

关于silverlight - 如何正确使用 WP7 sdk 提供的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3919882/

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