2013-08-27 103 views
3

我有一個CustomControl從組合框派生重寫StyleTypedProperty屬性

CustomComboBox : ComboBox 
    {} 

的事情是,組合框飾有StyleTypedProperty屬性:

[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(ComboBoxItem))] 
public class ComboBox {} 

我想提供一個不同的StyleTargetType,是這樣的解決可能嗎?

iv'e也試圖定義我自己:

[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(CustomComboBoxItem))] 

是沒有效果..

回答