我有一个从 ComboBox 派生的 CustomControl
CustomComboBox : ComboBox
{}
问题是 ComboBox 用 StyleTypedProperty Attribute 装饰:
[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(ComboBoxItem))]
public class ComboBox {}
我想提供不同的 StyleTargetType,这样的解决方法可能吗?
iv'e 还尝试定义我自己的:
[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(CustomComboBoxItem))]
那没有效果..