Windows 窗体中的 F# 和 OpenTK
有谁知道在 Windows 窗体中使用 F# 和 OpenTK 的好教程吗?
我已经看过这些链接: http://fsxplat.codeplex.com/releases/view/55463 http://www.opentk.com/node/1889
谢谢!
Does anyone know a good tutorial of using F# and OpenTK in Windows Forms?
These links I've already seen:
http://fsxplat.codeplex.com/releases/view/55463
http://www.opentk.com/node/1889
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信 fsxplat 项目中的示例应该是一个不错的起点。有两种方法可以将 OpenTK 与 WinForms 结合使用。
如果您要创建一个只有一个 OpenTK 窗口的应用程序,那么您可以继承
GameWindow
并在OnRenderFrame
中实现您的逻辑。然后,您只需创建对象的实例并调用Run
。例如,多维数据集教程.如果您想将 OpenTK 用作较大应用程序的一部分,您可以创建一个标准
Form
并添加GLControl
(来自OpenTK.GLControl.dll< /code>),这是一个标准的 WinForms 控件,使用 OpenTK 呈现内容。您可以在
DrawingForm< 中找到示例 /code> 在此处输入。
I believe the examples in the fsxplat project should be a decent starting point. There are two ways you can use OpenTK with WinForms.
If you're creating an application that has just one OpenTK window, then you can inherit from
GameWindow
and implement your logic inOnRenderFrame
. Then you just create an instance of your object and callRun
. This approach is used for example in the cube tutorial.If you want to use OpenTK as part of a larger application, you can create a standard
Form
and addGLControl
(fromOpenTK.GLControl.dll
), which is a standard WinForms control that renders content using OpenTK. You can find an example inDrawingForm
type here.