私はWPFアプリケーションにFluent Ribbonを使用しています。 StatusBar(FluentRibbonまたはデフォルトのもの)の色を変更することはできません。 ステータスバーはまだ青です。どうすれば変更できますか?バックグラウンドプロパティは私のためには機能しません。 FluentRibbon
でFluent Ribbonのステータスバーの色を変更するには
私のXAMLファイルは次のようになります(私はすべての必要のないコードを削除)
<Fluent:RibbonWindow
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Fluent="clr-namespace:Fluent;assembly=Fluent" x:Class="MainWindow"
Title="App" Height="600" Width="960" Closing="Window_Closing" WindowStartupLocation="CenterScreen" WindowState="Maximized" WindowStyle="SingleBorderWindow" BorderBrush="WhiteSmoke">
<Grid Name="grid" Focusable="True">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50*"/>
<ColumnDefinition Width="61*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="250*" />
<RowDefinition Height="22"/>
</Grid.RowDefinitions>
<Grid.Resources>
<Style TargetType="{x:Type Fluent:Ribbon}">
<Setter Property="Margin" Value="0,0,0,0" />
</Style>
</Grid.Resources>
<Fluent:StatusBar Foreground="White" Background="Red">
</Fluent:StatusBar>
</Grid>
私はあなたの質問のタイトルからタグを削除しました。なぜ[ここ](http://stackoverflow.com/help/tagging)を参照してください。 – dymanoid