0
我有一個自定義控件,並希望綁定用戶定義的邊距。在我試圖使用它的客戶端代碼中,它顯示一個錯誤。它說 -我可以創建一個簡單的依賴屬性來綁定Margin嗎?
「‘0}’字符串不能轉換爲長度」
public static readonly DependencyProperty MarginProperty =
DependencyProperty.Register("Margin", typeof (Thickness), typeof
(TestControl), new PropertyMetadata(default(Thickness)));
public Thickness Margin
{
get { return (Thickness) GetValue(MarginProperty); }
set { SetValue(MarginProperty, value); }
}
是否與我的依賴屬性的任何問題?
感謝& Regads
發佈更多程序代碼如何使用該屬性。 –