如何使用 Expression Blend 4 编辑 VS2010 F# 项目中的 XAML 文件?

发布于 2024-12-16 19:08:56 字数 377 浏览 0 评论 0原文

我不确定这是否可行,但我想在 Visual Studio 2010 中创建 F# 应用程序。然后我想通过 XAML 文件创建 WPF GUI,我通过 Expression Blend 4 编辑该文件。Blend

不允许创建 F# 项目。 VS2010不允许创建XAML文件。

我已按照此处的步骤操作: http://msdn.microsoft.com/en- us/library/hh273078.aspx

但是,当我在 Blend 中打开解决方案时,我看不到“设计”模式下的 XAML 文件。

这可能吗?

I am not sure if this is possible but I want to create an F# Application in Visual Studio 2010. I then want to create the WPF GUI via XAML files which I edit via Expression Blend 4.

Blend does not allow F# Projects to be created. VS2010 does not allow XAML files to be created.

I have followed the steps here : http://msdn.microsoft.com/en-us/library/hh273078.aspx

However when I open the Solution in Blend I can't see the XAML files in 'design' mode.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毁我热情 2024-12-23 19:08:56

我发现,要使 XAML 文件在 Blend 的“设计”视图中可编辑,我必须从默认的 F# 应用程序(控制台)更改为 F# 应用程序 (Windows),然后添加PresentationFoundation.dll 作为资源。

来自 fsproj 文件。

-     <OutputType>WinExe</OutputType>
-     <Reference Include="PresentationFramework" />

I figured out that to make the XAML file editable in Design view of Blend I had to change from the default F# Application (Console) to F# Application (Windows) and secondly add the PresentationFoundation.dll as a resource.

From the fsproj file.

-     <OutputType>WinExe</OutputType>
-     <Reference Include="PresentationFramework" />
朮生 2024-12-23 19:08:56

Blend 通常不喜欢设置为 Resource 的 XAML 文件。它期望 XAML 文件是页面或内容(买者自负:没有参考,只是我的经验)。除非您需要 XAML 与 F# 一起使用,否则我会将其放在单独的 WPF 控件库项目中。

Blend generally doesn't like XAML files that are set to Resource. It expects XAML files to be Page or Content (caveat emptor: no reference, just my experience). Unless you need the XAML to be with the F#, I'd put it in a separate WPF control library project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文