如何将依赖属性放入非杂项面板中?

发布于 2024-08-16 00:16:44 字数 132 浏览 2 评论 0原文

当我将依赖属性添加到用户控件时,我总是在属性窗口(在 Expression Blend 中)的“杂项”面板中找到它。 但是,有时我有太多自定义属性,并且它们都在“杂项”面板中。 如何将属性添加到其他面板?我可以制作自己的面板吗?但我不知道——怎么办。

When I add Dependency Property to my user control, I always finded it in Miscellaneous panel on a properties window (in Expression Blend).
But, some times i've too many custom properties and all they are in Miscellaneous panel.
How I can put properties to othe panel? May be I can make my own panel? But I do not know - how.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林散布 2024-08-23 00:16:44

System.ComponentModel 中的属性决定了这一点。

在您的情况下,您需要指定 [Category] 用于您的财产。

The attributes in System.ComponentModel determine this.

In your case, you need to specify the [Category] to use for your property.

别念他 2024-08-23 00:16:44

我喜欢用这样的描述来额外装饰该方法:

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

这在工具提示中显示这是有用的。

I like to additionally decorate the method with a description as such:

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

This shows in the tool tip which is useful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文