我有来自ComboBox的CustomControl派生
CustomComboBox : ComboBox
{}
问题是ComboBox是用StyleTypedProperty属性:
装饰的 [StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(ComboBoxItem))]
public class ComboBox {}
我想提供一个不同的StyleTargetType,这样的工作可能吗?
我也尝试定义自己的:
[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(CustomComboBoxItem))]
没有效果..
答案 0 :(得分:1)