gpt4 book ai didi

wpf - 如何在窗口标题中设置静态资源绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 13:23:15 25 4
gpt4 key购买 nike

我想放一个IValueConverter绑定(bind)到窗口的标题,以便在事件项目更改时更改。问题是值转换器是静态资源,仅在几行之后加载:

<Window x:Class="MyProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyProject"
Height="600" Width="800" VerticalAlignment="Stretch"
Title="{Binding ActiveProject, Converter={StaticResource windowTitleConverter}}, UpdateSourceTrigger=PropertyChanged">
<Window.Resources>
<local:MainWindowTitleConverter x:Key="windowTitleConverter"/>
</Window.Resources>

<!-- Rest of the design -->
</Window>

然后是转换器的定义:
public class MainWindowTitleConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value == null) return "Programme"; else return "Programme: " + (value as string);
}

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}

这崩溃了,大概是因为 StaticResource尚未加载(我想不出任何其他原因),因为没有转换器它可以正常工作。但是,我无法更改顺序。我试图把它放在 <Window.Title>标记,但是我在该标记中放入的任何内容都会产生编译错误。这样做的正确方法是什么?

最佳答案

只需使用更详细的定义

xmlns:System="clr-namespace:System;assembly=mscorlib"

...

<Window.Resources>
<local:MainWindowTitleConverter x:Key="windowTitleConverter"/>
...
</Window.Resources>
<Window.Title>
<Binding Path="ActiveProject">
<Binding.Converter>
<StaticResource ResourceKey="windowTitleConverter" />
</Binding.Converter>
</Binding>
</Window.Title>

我目前无法对此进行测试,但它应该可以工作。

关于wpf - 如何在窗口标题中设置静态资源绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19857268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com