2009-12-18 24 views
1

當我將依賴屬性添加到我的用戶控件時,我總是在屬性窗口上的「雜項」面板中找到它(在Expression Blend中)。 但是,有些時候我有太多的自定義屬性,他們都在雜項面板中。 我如何可以將屬性添加到其他面板?可能我可以製作我自己的面板?但是我不知道怎麼做。如何把雜項面板中的依賴屬性?

回答

0

我喜歡附加裝飾帶描述的方法,例如:

[Category("Modal Options")] 
    [Description("Set the modal background on or off")] 
    public bool Modal 
    { 
     get { return (bool)GetValue(ModalProperty); } 
     set { SetValue(ModalProperty, value); toggleModal(); } 
    } 

這顯示在工具提示這是有用的。