Sharpdevelop 中的 XAML 和 Boo
我能够在 Sharpdevelop 中创建并运行 boo 控制台应用程序。
有没有办法使用XAML标记指定UI并在boo中编写后面的代码以在Sharpdevelop中进行WPF开发?如果没有,boo 中的 WPF 开发还有其他替代方案吗?
I am able to create and run boo console applications in Sharpdevelop.
Is there a way to specify the UI using XAML markup and write the code behind in boo for WPF development in Sharpdevelop? If not is there any other alternative for WPF development in boo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XAML 的生成选项“Page”要求 XamlMarkupCompiler(包含在 MSBuild 中)以项目语言输出代码。仅支持 C# 和 VB。
但是,您可以使用构建选项“EmbeddedResource”,然后在运行时使用 XamlLoader 解析 .xaml。
The build option 'Page' for XAML requires that the XamlMarkupCompiler (included with MSBuild) outputs code in the project's language. That's only supported for C# and VB.
However, you could use the build option 'EmbeddedResource' and then parse the .xaml at runtime using XamlLoader.
这是一个示例实现,摘自
http://devpinoy.org/blogs/smash /archive/2006/10/04/XAMl-meets-Boo.aspx(向下)
(已缓存)http://webcache.googleusercontent.com/search?q=cache:B2aZX6wcJPoJ:devpinoy.org/blogs/smash/archive/2006/10/04/XAMl-meets-Boo.aspx +xaml+and+boo&cd=1&hl=en&ct=clnk&gl=ca&source=www.google.ca
Here's an example implementation, extracted from
http://devpinoy.org/blogs/smash/archive/2006/10/04/XAMl-meets-Boo.aspx (down)
(Cached) http://webcache.googleusercontent.com/search?q=cache:B2aZX6wcJPoJ:devpinoy.org/blogs/smash/archive/2006/10/04/XAMl-meets-Boo.aspx+xaml+and+boo&cd=1&hl=en&ct=clnk&gl=ca&source=www.google.ca