Skip to content

win10 uwp 绑定静态属性

Updated: at 08:22,Created: at 09:23

Jasoon 大神问,如何绑定静态属性。 我们经常有静态属性,那么我们如何绑定

假如我们的ViewModel有一个静态属性

public static string CVTE
{
set;
get;
} = "lindexi";

一个方法是在xaml.cs写一个属性,get为静态属性。

public string Property => ViewModel.ViewModel.CVTE;

在xaml绑定xaml.cs属性

<TextBlock Text="{x:Bind Property,Mode=OneWay}"></TextBlock>

下面方法我没测试成功,但是有大神说他这样做是可以。

在需要绑定的类上写[Bindable]

这样写的具体参见:http://www.jaylee.org/post/2012/03/07/Xaml-integration-with-WinRT-and-the-IXamlMetadataProvider-interface.aspx

我不知道为何这样,知道的大神可以告诉我不?

然后在xaml写

xmlns:view="using:Bproperty.ViewModel"
<TextBlock Text="{x:Bind Path=(view:ViewModel.CVTE) }"
HorizontalAlignment="Center" VerticalAlignment="Center"/>

参见:http://stackoverflow.com/questions/15854708/how-can-i-bind-a-xaml-property-to-a-static-variable-in-another-class

http://stackoverflow.com/questions/34701255/how-to-bind-to-attached-property-in-uwp


知识共享许可协议

原文链接: http://blog.lindexi.com/post/win10-uwp-%E7%BB%91%E5%AE%9A%E9%9D%99%E6%80%81%E5%B1%9E%E6%80%A7

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。 欢迎转载、使用、重新发布,但务必保留文章署名 林德熙 (包含链接: https://blog.lindexi.com ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我 联系