0
代碼我喜歡this flat button style:使用靜態資源和X:靜態背後
<Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" BorderThickness="0" ... />
試圖創建代碼,後面的按鈕:
var button = new Button
{
Style = (Style)Application.Current.FindResource("ToolBar.ButtonStyleKey"), // wrong
BorderThickness = new Thickness(0),
...
};
會拋出:
例外類型'System.Windows.ResourceReferenceKeyNotFoundException'發生在WindowsBase.dll中,但未在用戶代碼中處理
附加信息:找不到'ToolBar.ButtonStyleKey'資源。
愚蠢的錯誤,謝謝。 – Sinatr