使用VS 2008或Blend 3,在XAML中创建样式时,有什么方法可以获得可用属性的智能感知?我以为我听说有第三方免费赠品就是这样做的。
在下面的代码片段中,我想要了解FontSize,Margin,Width等属性的intellisense。
<Style x:Key="MyTextBoxStyle" TargetType="TextBox">
<Setter Property="FontSize" Value="12"/>
<Setter Property="Margin" Value="5"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Width" Value="200"/>
</Style>
答案 0 :(得分:1)
快速Bing提出以下链接。不知道它是否适用于你的情况,但它肯定在我的。 The problem shows up if you install the Windows SDK after VS2008
Shawn Wildermuth对编辑Silverlight XAML提出了很好的建议...... use the XML editor instead of what Visual Studio wants to use for all XAML (The WPF Designer)