如何将自定义数据上下文的绑定与自定义标记相结合

发布于 2024-10-06 03:44:36 字数 468 浏览 3 评论 0原文

我想组合来自包含 ViewModel 类和 ResourceProvider 类的自定义数据上下文的绑定。自定义数据上下文设置为窗口 DataContext。

我这样使用它:

<Button x:Name="btnShow" Content="Show" Command="{Binding View.HandleShow}"/>

哪个视图是 dataContext 的属性。我想使用最小标记通过自定义数据上下文进行本地化,并在我创建自己的数据上下文的代码中从其他源设置 ResourceProvider

是否有可能以类似于该行代码的方式执行此操作:

 <TextBlock Text="{Binding Res.Key=test}" />

我的资源提供程序继承自具有一个属性的标记扩展:Key。

感谢您的任何建议

I want to combine binding from my custom data context which contains ViewModel class and ResourceProvider class. Custom data context is set as window DataContext.

I use it that way:

<Button x:Name="btnShow" Content="Show" Command="{Binding View.HandleShow}"/>

Which View is property from dataContext. I want to use localization by custom data context using minimum markup and set ResourceProvider from other source in code that I created my own data context

Is there any possibility to do it in something which is similar to that line of code:

 <TextBlock Text="{Binding Res.Key=test}" />

My resource provider inherits from markup extension with one Property: Key.

Thanks for any advice

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

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

发布评论

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

评论(2

陈年往事 2024-10-13 03:44:36

您可以使用以下代码创建自定义标记扩展:

public class LocalizedBinding : MarkupExtension
{
    public String Key { get; set; }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        IProvideValueTarget target = (IProvideValueTarget)serviceProvider.GetService(typeof(IProvideValueTarget));

        //use target.TargetObject and target.TargetProperty to provide value based on Key
    }
}

并按如下方式使用它:

<TextBlock Text="{local:LocalizedBinding Key=SomeKey}" />

You can create a custom markup extension using the following code :

public class LocalizedBinding : MarkupExtension
{
    public String Key { get; set; }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        IProvideValueTarget target = (IProvideValueTarget)serviceProvider.GetService(typeof(IProvideValueTarget));

        //use target.TargetObject and target.TargetProperty to provide value based on Key
    }
}

and use it like :

<TextBlock Text="{local:LocalizedBinding Key=SomeKey}" />
野稚 2024-10-13 03:44:36

我尝试该解决方案,但我更喜欢避免前缀 local,因为 localizedBinding 来自不同的源并使用 IoC 模式,因为我创建了 CustomDataContext

I try that solution but i prefer avoid prefix local because localizedBinding came from different source and use IoC pattern because of that I create CustomDataContext

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