返回

c#-无法成功将IsVisible动态绑定到静态字段

发布时间:2022-03-14 11:36:43 392
# flask

我正在尝试做类似的事情绑定到静态类属性1.我想把绳子绑起来可见将多个控件设置为单个静态控件的属性布尔(所以我可以用一个C#语句让它们全部出现和消失)。

以下是其中一个控件的XAML:

<Label Grid.Row="3"
       x:Name="LabelDireWarning"
       Grid.ColumnSpan="2"
       TextColor="Red"
       FontAttributes="Bold"
       HorizontalTextAlignment="Center"
       IsVisible="{Binding Source={x:Static local:State.IsChangingPassword}}"
       Text="blah blah."/>

这里是字段:

public static class State
{
    public static bool IsChangingPassword = true;
    etc.

我有一个可以切换的测试按钮IsChangingPassword,但控件的可见性不变。

我想这与“我的”有关;提高PropertyChanged“事件”;但我该怎么办呢?

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像