4
我遇到只讀附加屬性的問題。 我這樣定義它:觸發器中的只讀附屬屬性(WPF)
public class AttachedPropertyHelper : DependencyObject
{
public static readonly DependencyPropertyKey SomethingPropertyKey = DependencyProperty.RegisterAttachedReadOnly("Something", typeof(int), typeof(AttachedPropertyHelper), new PropertyMetadata(0));
public static readonly DependencyProperty SomethingProperty = SomethingPropertyKey.DependencyProperty;
}
而且我想在XAML中使用它:
<Trigger Property="m:AttachedPropertyHelper.Something" Value="0">
<Setter Property="FontSize" Value="20"/>
</Trigger>
但是編譯器不想要與它合作。 在結果,我有2個錯誤:
無法找到樣式屬性的類型「東西」「ReadonlyAttachedProperty.AttachedPropertyHelper」。 Line 11 Position 16.
Property'Something'在'TextBlock'類型中找不到。
是的,我知道。但我對這種方式感興趣... – Developex
在哪種方式?你想實現什麼? – LPL
我想使用READ-ONLY附加屬性。 – Developex