我想我有这个问题中描述的同样的问题。
<ItemsControl ItemsSource="{Binding Buttons}">
...
<DataTemplate>
<RadioButton Style="{StaticResource {x:Type ToggleButton}}"/>
...
在这种情况下,静态资源不会被解析。我尝试按照上面的链接将其更改为 DynamicResource 但这并不能解决问题。我可以做些什么来访问 DataTemplate 中的 StaticResource ?