我已经看过了一些关于这个问题的答案,并且根据我所知道的,我按照他们规定的方式绑定到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>
任何帮助都将不胜感激。这让我发疯。
我尝试通过上面显示的方法。这是根据以前的问题对这个问题。
2条答案
按热度按时间tcbh2hod1#
尝试使用此绑定,其中包含一个路径:
可以通过将static属性设置为新值来更新
Label
:ovfsdjhp2#
我将绑定从:
致:
这对我来说已经足够了。