1
所有元素這裏的東西我想做的事:WPF樣式使用的UIElement
<Application.Resources>
<Style TargetType="{x:Type UIElement}">
<Setter Property="Opacity"
Value=".1" />
</Style>
</Application.Resources>
所以,我可以樣式的類型(不僅僅是一些具體的最終UI類型)。我不是在尋找最佳實踐,更多的是思考問題。
我注意到WPF沒有設計在TargetType
(UIElement
,FrameworkElement
等等)中指定的超類。它只適用於TargetType
等同於具體的UI類(Button
,Rectangle
)。