GDI+使用 C++Builder?

发布于 2024-08-30 10:36:39 字数 89 浏览 2 评论 0原文

如何将GDI+C++Builder结合使用?有人可以给我一个创建曲面并在其上画圆的简单示例吗?

How do I use GDI+ with C++Builder? Can someone give me a simple example of creating a surface and drawing a circle on it?

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

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

发布评论

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

评论(1

陪你搞怪i 2024-09-06 10:36:39

这类似于使用 Visual Studio 用 C 语言编写普通的 Windows 程序。

基本上:

  • 包含指向 gdiplus.lib 的“gdiplus.h”
  • 链接
  • 在程序开始时调用 GdiPlusStartup (在创建主窗口之前)
  • 在程序结束时调用 GdiPlusShutdown (在消息循环结束并且主窗口被销毁之后)

这是示例程序的链接:

http:// msdn.microsoft.com/en-us/library/ms533895(v=VS.85).aspx

MSDN 包含有关此主题的大量信息:

http://msdn.microsoft.com/en-us/library/ms533802(v=VS.85).aspx< /a>

It would be similar to coding a normal Windows program in C using Visual Studio.

Basically:

  • include "gdiplus.h"
  • link to gdiplus.lib
  • call GdiPlusStartup at the start of your program (before main window creation)
  • call GdiPlusShutdown at the end of your program (after the message loop has ended and the main window's been destroyed)

Here's a link with a sample program:

http://msdn.microsoft.com/en-us/library/ms533895(v=VS.85).aspx

MSDN contains much information on this topic:

http://msdn.microsoft.com/en-us/library/ms533802(v=VS.85).aspx

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