3
是否可以在兩個不同的窗口中繼承ControlTemplate的相同樣式? 我是新來的wpf,我不知道該怎麼做,或者即使有可能。 例如,如果我有Window1.xaml:Wpf xaml繼承
<Window.Resources>
<ControlTemplate x:Key="myStyle" TargetType="Button">
...
</ControlTemplate>
</Window.Resources>
而在Window2.xaml我想用這樣的:
<Grid>
<Grid.Resources>
<Style TargetType="Button" BasedOn="{StaticResource myStyle}">
...
</Style>
</Grid.Resources>
<Grid>
如何導入樣式從第一窗口?