WP7如何在C#中添加样式

| 我已经在App.xaml(\“ RoundButton \”)中为按钮控件创建了样式。我想用C#代码创建一个按钮,并将按钮的样式设置为App.xaml文件中创建的按钮。是否有可能做到这一点?
已邀请:
Button btn = new Button();
btn.Style= (Style)App.Current.Resources[\"RoundButton\"];

要回复问题请先登录注册