xaml でクラスの静的プロパティを参照するにはどうすればよいですか? 言い換えれば、私はこのようなことをしたい:
Class BaseThingy {
public static readonly Style BaseStyle;
...
}
<ResoureDictionary ...>
<Style BasedOn="BaseThingy.Style" TargetType="BaseThingy" />
</ResourceDictionary>
BasedOn でこれを行う構文は何ですか? StaticResource
ある程度の使用が必要になると思いましたが、うまくいきませんでした。