如何创建带有非字符串参数的 MarkupExtension?

发布于 2024-07-10 15:02:02 字数 550 浏览 10 评论 0原文

我正在 WPF 应用程序中开发自定义标记扩展。 我见过的每个文档示例都使用 XAML 中的字符串参数来构造新对象。 是否可以使用非字符串参数?

换句话说,我怎样才能做这样的事情呢?

[MarkupExtensionReturnType(typeof(Uri))]
public class RefPackUriExtension : MarkupExtension
{
    object _assembly = null;

    public RefPackUriExtension() { }

    public RefPackUriExtension(object assembly)
    {
        this._assembly = assembly;
    }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        //return an object by using the "_assembly" member somehow
    }
}

I am working on a Custom MarkupExtension within a WPF application. Every documented example I have seen uses string parameters from XAML to construct the new object. Is it possible to use a non-string parameter?

In other words, how can I do something like this?

[MarkupExtensionReturnType(typeof(Uri))]
public class RefPackUriExtension : MarkupExtension
{
    object _assembly = null;

    public RefPackUriExtension() { }

    public RefPackUriExtension(object assembly)
    {
        this._assembly = assembly;
    }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        //return an object by using the "_assembly" member somehow
    }
}

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

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

发布评论

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

评论(1

情绪 2024-07-17 15:02:03

MarkupExtension 的任何参数都遵循与 CLR 对象属性相同的解析行为。 您可以使用 TypeConverter 允许用户提供转换为目标类型的 string,也可以使用另一个 MarkupExtension

作为前者的示例,请参阅 ColorConverter 类。 作为后者的示例,请参阅 RelativeSource 类(在 Binding MarkupExtension 中使用)。

Any parameters to your MarkupExtension are subject to the same parsing behavior as properties on CLR objects. You can use a TypeConverter to allow the user to provide a string that is converted to the target type, or you can use another MarkupExtension.

As an example of the former, see the ColorConverter class. As an example of the latter, see the RelativeSource class (which is used within the Binding MarkupExtension).

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