Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过后面的代码分配 StandardStyles.xaml 中定义的样式。
我试过了
var x = Resources["UnfavoriteAppBarButtonStyle"];
但我在那个代码上得到了COMException 。
对 COM 组件的调用已返回错误 HRESULT E_FAIL。
如果上面的代码是错误的,我该如何从 StandardStyles.xaml 访问样式
我知道了
正确的做法是:
var style = Application.Current.Resources["FavoriteAppBarButtonStyle"] as Style
你也可以这样添加
backButton.Style = (Style)this.Resources["NavigationBackButtonNormalStyle"];
这里(style)将其声明为样式类型
(style)