我正在处理一个相当大的WPF项目,其中包含大量的类和XAML设计文件。
但是有一件事使我发疯:IntelliSense绑定自动完成有时无法显示正确的值(多数情况下,在我无法提供正确的DataType
并且没有使用任何烘烤的情况下,例如{{1 }}内容类型)
因此,实际问题是:是否可以通过某种方式来强制IntelliSense使用某种类型的自动完成功能?
作为随机示例,请使用此 XAML :
Page
这对于 C#类:
<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>
答案 0 :(得分:2)
您可以使用{Binding Path=(xmlNameSpace:TypeName.PropertyName)}
格式来强制输入类型并在PropertyName上获得完成。
这会导致Binding
将路径视为attached property,当附加属性类型与绑定类型相同时,它会退回到“常规”属性。我不确定尝试将其解析为附加属性是否会产生任何额外的开销,但是对于Visual Studio而言,在您键入时就开始为您提供自动完成的属性就足够了。我认为这有点骇人听闻,因为它绝对不是该语法的预期用途,
在您的特定示例中,它看起来像(针对您的命名空间进行调整):
<GridViewColumn DisplayMemberBinding="{Binding Path=(local:Payment.Bank)}"/>