4

我正在尝试使用 Linqpad 构建一些实时 WPF/XAML 示例

要创建 Window() 和其他控件,我需要从 linqpad 引用 System.Windows.Controls ...

我尝试使用 F4 添加此引用,但 System.Windows.Controls 未出现在列表中...在 VS 2010 中我可以添加此引用...因此证明 .DLL 存在

我已经查看了 \Windows\Microsoft.NET\Framework\v4.0.30319 并且什么都没有......还查看了 \Windows\Microsoft.NET\Framework\v4.0.30319\WPF 并且什么也没有......

\Windows\Microsoft.NET\Framework\v4.0.30319\WPF 中有一个 System.Windows.Presentation.dll,但我尝试包含它但仍然无法正常工作

?有什么建议么

4

1 回答 1

6

好的 解决了...

只需包含 \Windows\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationFramework.dll

// and import namespaces
System.Windows.Controls
System.Windows.Documents
System.Windows.Interop
System.Windows.Media
System.Windows.Shell
System.Xaml

;=))

于 2012-11-25T03:31:36.073 回答