我正在处理一个相当大的WPF项目,其中包含大量的类和XAML设计文件.
但是有一件事使我发疯:IntelliSense绑定自动完成有时无法显示正确的值(多数情况下,在我无法提供适当的DataType并且没有使用任何烘焙的情况下,例如Page内容类型)
因此,实际的问题是:是否有某种方法可以强制IntelliSense对自动完成使用某种类型?
作为随机示例,请使用以下XAML:
<DataTemplate xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
DataType="{x:Type Accounting}">
<ListView ItemsSource="{Binding Payments}">
<ListView.View>
<GridView>
<!--
Auto completion still assumes the type is Accounting
and displays the properties of Accounting instead of
the required Payments.
-->
<GridViewColumn DisplayMemberBinding="{Binding Bank}"/>
</GridView>
</ListView.View>
</ListView>
</DataTemplate>
对于C#类,这是:
public class Accounting
{
public List<Payment> Payments { get; set; }
}
public class Payment
{
public string Bank { get; set; }
}
解决方法:
您可以使用{Binding Path =(xmlNameSpace:TypeName.PropertyName)}形式来强制类型并在PropertyName上获得完成.
这导致绑定将路径视为attached property,当附加属性类型与绑定类型相同时,该路径回退为“常规”属性.我不确定尝试将其解析为附加属性是否会产生任何额外的开销,但是对于Visual Studio而言,在您键入时就开始为您提供自动完成的属性就足够了.我认为这有点骇人听闻,因为它绝对不是该语法的预期用途,
在您的特定示例中,它看起来像(调整您的名称空间):
<GridViewColumn DisplayMemberBinding="{Binding Path=(local:Payment.Bank)}"/>