wpf 为什么我的控件不使用static属性更新?

2izufjch  于 2023-02-16  发布在  其他
关注(0)|答案(2)|浏览(188)

我已经看过了一些关于这个问题的答案,并且根据我所知道的,我按照他们规定的方式绑定到static属性。我的绑定正确地获得了值,但是当属性get改变时,它没有更新。下面是我的代码:
我定义变量的类:

public static class Globals
    { 
        private static string file_name;
        
        public static string FILE_NAME
        {
            get { return file_name; }
            set
            {
                file_name = value;
                OnStaticPropertyChanged(nameof(FILE_NAME));
            }
        }
        public static event PropertyChangedEventHandler StaticPropertyChanged;
        private static void OnStaticPropertyChanged(string propertyName)
        {
            StaticPropertyChanged?.Invoke(null, new PropertyChangedEventArgs(propertyName));
        }
    }

适用的XAML:

<Page x:Class="CADViewer.Pages.MainPage"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      xmlns:local="clr-namespace:CADViewer"
      xmlns:s="clr-namespace:CADViewer"
      mc:Ignorable="d" 
      d:DesignHeight="{x:Static SystemParameters.PrimaryScreenHeight}"  d:DesignWidth="{x:Static SystemParameters.PrimaryScreenWidth}"
      Title="MainPage" Background="#282D33">

    <Grid>
       <Label Content="{Binding Source={x:Static local:Globals.FILE_NAME}, Mode=OneWay}" FontSize="20" Margin="20, 20, 0, 0" HorizontalAlignment="Left"/>
    </Grid>
</Page>

任何帮助都将不胜感激。这让我发疯。
我尝试通过上面显示的方法。这是根据以前的问题对这个问题。

tcbh2hod

tcbh2hod1#

尝试使用此绑定,其中包含一个路径:

<Label Content="{Binding Path=(local:Globals.FILE_NAME), Mode=OneWay}" 
       FontSize="20" Margin="20, 20, 0, 0" HorizontalAlignment="Left"/>

可以通过将static属性设置为新值来更新Label

Globals.FILE_NAME = "new value...";
ovfsdjhp

ovfsdjhp2#

我将绑定从:

Content="{Binding Source={x:Static local:Globals.FILE_NAME}, Mode=OneWay}"

致:

Content="{Binding Path=(local:Globals.FILE_NAME), Mode=OneWay}"

这对我来说已经足够了。

相关问题