2
這是我的風格:無法綁定在我的風格,以資源WPF
<Style x:Key="someStyle" TargetType="{x:Type Border}">
<Setter Property="Control.Background" Value="#BB252525"/>
</Style>
該代碼工作正常,但我真的需要背景色綁定到這個資源:當我
<Color x:Key="MenuBackground">#BB252525</Color>
而且做到這一點:
<Style x:Key="someStyle" TargetType="{x:Type Border}">
<Setter Property="Control.Background" Value="{DynamicResource MenuBackground}"/>
</Style>
我得到以下錯誤:
如何設置背景屬性等於資源MenuBackground。我究竟做錯了什麼?
但是我怎麼能創建一個畫筆資源?也許我錯過了一個參考? –
@Tono Nam添加代碼... –
恰好我將它與SolidColorBrush綁定!謝謝 –