1
我注意到將MahApps.Metro樣式添加到我的資源字典中時,這些樣式正在應用於我的應用程序中的所有項目,這不是所需的效果。我只想使用ToggleSwitch和Combobox樣式。這怎麼能實現?MahApps風格不應該適用於所有項目
Thanx!
我注意到將MahApps.Metro樣式添加到我的資源字典中時,這些樣式正在應用於我的應用程序中的所有項目,這不是所需的效果。我只想使用ToggleSwitch和Combobox樣式。這怎麼能實現?MahApps風格不應該適用於所有項目
Thanx!
只放下面的資源字典在您的XAML
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Colours.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.Buttons.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.ComboBox.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/Blue.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseLight.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style TargetType="ToggleButton" BasedOn="{StaticResource MetroToggleButton}" />
<Style TargetType="ComboBox" BasedOn="{StaticResource MetroComboBox}" />
<Style TargetType="ComboBoxItem" BasedOn="{StaticResource MetroComboBoxItem}" />
</ResourceDictionary>
希望這有助於
感謝名單這有助於!現在唯一的問題是,ToggleSwitches只有灰色。有什麼建議麼? –
@ChrisjanL我忘了口音的顏色,這必須幫助 – punker76
嗨我想知道是否有一種方法來改變標題欄的顏色時使用mahapps?它目前的淺藍色,但可以說我想它橙色? –