4

我正在使用 MahApp.Metro 测试 wpf 应用程序。不知何故,我无法更改 ToggleSwitch 的样式。我只想更改开关的前景或背景等简单属性。我究竟做错了什么?

主窗口.xaml

<Style  x:Key="flyoutToggleSwitchStyle" TargetType="{x:Type Controls:ToggleSwitch}" BasedOn="{StaticResource {x:Type Controls:ToggleSwitch}}">
        <Setter Property="BorderBrush" Value="WhiteSmoke"/>
        <Setter Property="Background" Value="White"/>    
        <Setter Property="Foreground" Value="Yellow"/>
        <Setter Property="OnLabel" Value="Yes"/>  <!--<<<---THIS WORKS!!-->
        <Setter Property="OffLabel" Value="No"/>
    </Style>

<Controls:ToggleSwitch Style="{StaticResource flyoutToggleSwitchStyle}">
    <Controls:ToggleSwitch.Header>
           <TextBlock>
                    Test                            
           </TextBlock>
     </Controls:ToggleSwitch.Header>
 </Controls:ToggleSwitch>
4

2 回答 2

2

现在有一个名为允许更改位置颜色的新ToggleSwitch属性(在 v0.14 上测试)。例子:SwitchForegroundON

<controls:ToggleSwitch SwitchForeground="{StaticResource MyGreen}" />
于 2014-12-01T23:21:22.767 回答
1

问题是在 Mahapps.Metro ToggleSwitch 中的大多数属性不能在样式内更改,因为在原始模板定义中没有定义 TemplateBinding 或 Key。
所以只能通过新建模板来改变样式。为此,必须更改 ToggleSwitch 和 ToggleSwitchButton 模板。

模板的 GitHub
源上的问题

于 2013-10-21T08:38:37.427 回答