ViewBase から派生したカスタム ビューである Xaml ファイルを使用しており、別のアセンブリにある DynamicResource にアクセスしたいと考えています。次のようなものを使用できることがわかりました。
<Application.Resources>
<ResourceDictionary
Source="/mylib;Resources/MyStyleDictionary.xaml" />
</Application.Resources>
ただし、次のような xaml ファイルを扱っています。
<myLib:ViewBase>
<Grid>
<Button>
Style="{DynamicResource MyButtonStyle}" // I want this style to come from a different assembly
</Button>
</Grid>
</myLib:ViewBase>
これどうやってするの?