c#wpf多重绑定不可用

c#wpf多重绑定不可用,c#,wpf,binding,multibinding,C#,Wpf,Binding,Multibinding,我想做的很简单。我有一个窗口,我希望标题绑定到两个不同的属性。每次属性更改时,都应更新标题 我先试的东西没用 使用多绑定,而不是多绑定。 XAML是区分大小写的。无法相信这解决了我的问题,有趣的多重绑定在Intellisense中仍然是不可选择的,就像TextBlock等其他类一样。-无论如何,非常感谢 <Window x:Class="MyNamespace.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xa

我想做的很简单。我有一个窗口,我希望标题绑定到两个不同的属性。每次属性更改时,都应更新标题

我先试的东西没用


使用
多绑定
,而不是
多绑定

XAML是区分大小写的。

无法相信这解决了我的问题,有趣的多重绑定在Intellisense中仍然是不可选择的,就像TextBlock等其他类一样。-无论如何,非常感谢
<Window x:Class="MyNamespace.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="{Binding Path=Clientname} {Binding Path=LoadedConfiguration}" 
<Window x:Class="MyNamespace.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<Window.Title>
    <Multibinding StringFormat="{}{0} + {1}">
        <Binding Path="Clientname" />
        <Binding Path="LoadedConfiguration" />
    </Multibinding>
</Window.Title>