English 中文(简体)
XAML 数据绑定 - UI 不自动更新
原标题:XAML data binding - UI not automatically updating

我制作了一个程序, 存储我类型项目中的任何数个对象。 每个项目随后包含任何数个文件, 这也是我为这个程序创建的另一个对象 。

我的问题出现在XAML, 有两个地区, 但我猜想有着相似的起源。

我有一个窗口, 它包含一个 ListView 列表, 与所选工程中的文件一起聚集。 从这里我可以在每个项目旁边检查一个框来打开或关闭它们, 如果我选择一个文件, 有关它的信息将出现在此窗口的状态栏中 。

如果我关闭一个文件, 它的文本颜色应该在 ListView 中显示为浅灰色, 但是它不会自动这样做; 我必须关闭窗口并重新打开它。 文件执行 INotifeProperty Changed, 如果打开/ 关闭状态发生变化则会点燃此事件 。

我使用这个XAML代码, 转换器在我的代码后面的班级:

<ListBox.ItemContainerStyle>
     <Style TargetType="ListBoxItem">
          <Setter  Property="Foreground" Value="{Binding Path=IsVisible, Converter={StaticResource VisibleStateToFontColourConverter}}"/>
     </Style>
</ListBox.ItemContainerStyle>  

另外,对于选定的文件,如果在选择文件时文件中的信息在选择文件时发生变化(其他类别可能导致发生),我希望状态栏自动更新以反映这一变化,但是它没有;我必须单击其它东西,然后重新选择感兴趣的文件。我实施并使用我为此通知的更改,所以我不知道为什么它不会自动更新。 我的状态项目的 XAML 代码是这样:

<StatusBarItem Name="statusItem_FileInfo" Content="{Binding ElementName=loadedFiles_ListView, Path=SelectedItem, Converter={StaticResource GIS_FileToInfoConverter}}"/>

有谁知道我错过了什么 会把事情搞到一起吗?

最佳回答

尝试将 < dcode> update sourcesTriger= 财产已更改 添加到您的绑定上 :

Value = "{Binding ... , UpdateSourceTrigger=PropertyChanged}"

在您用已更改的属性名称更改属性后直接拨打 on Property Changed :

public event PropertyChangedEventHandler PropertyChanged;

private void OnPropertyChanged(string propertyName)
{
    PropertyChangedEventHandler handler = PropertyChanged;
    if (handler == null) return;
    handler (this, new PropertyChangedEventArgs(propertyName));
}

如果您更改了 "Is ableable" call on Property Changed (“Isvisable”) , 调用 on Property Changed (“Isvisable”)

问题回答

为什么您不对您的列表框项目使用数据触发器? 如果我对您正确的话, 您只想在两个州之间切换 。

所以默认样式应该是前景=黑色和数据触发属性=可见值=false- gt; 然后是前景光色





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签