最も簡単な方法は、あなたがより多くの制御をしたい場合は、あなたのApp.xaml
このような
<Application.Resources>
<SolidColorBrush x:Key="InkToolbarButtonBackgroundThemeBrush">Transparent</SolidColorBrush>
</Application.Resources>
にテーマの背景ブラシをオーバーライドすることで、すべてのボタンスタイルがBasedOn
であるスタイルを含めることができます。
<Application.Resources>
<Style x:Key="InkToolbarCommonButtonStyle"
TargetType="ToggleButton">
<Setter Property="MinWidth"
Value="{ThemeResource InkToolbarButtonWidth}" />
<Setter Property="MinHeight"
Value="{ThemeResource InkToolbarButtonHeight}" />
<Setter Property="MaxWidth"
Value="{ThemeResource InkToolbarButtonWidth}" />
<Setter Property="MaxHeight"
Value="{ThemeResource InkToolbarButtonHeight}" />
<Setter Property="BorderThickness"
Value="0" />
<Setter Property="Background"
Value="Transparent" />
<Setter Property="Foreground"
Value="{ThemeResource InkToolbarButtonForegroundThemeBrush}" />
<Setter Property="FocusVisualMargin"
Value="-3" />
</Style>
</Application.Resources>
背景をどのように設定していますか?コード内に関連するスニペットを表示してください。 –