gpt4 book ai didi

C++ 矩形() 参数

转载 作者:行者123 更新时间:2023-11-28 00:42:23 26 4
gpt4 key购买 nike

我正在学习编写 Windows 窗体代码,并开始使用基本图形。我能够很容易地在屏幕上绘制矩形。问题是,我一直在尝试更改构造函数的参数,但我完全不知道它们的作用。我在谷歌上搜索了很长时间试图找出答案,但我完全被困住了。有人能告诉我参数对矩形的尺寸及其坐标有何影响吗?

假设我们像这样绘制矩形:

矩形(hdc,5,5,50,50);

最佳答案

您可以在此处找到文档:http://msdn.microsoft.com/en-us/library/windows/desktop/dd162898(v=vs.85).aspx

BOOL Rectangle(
_In_ HDC hdc,
_In_ int nLeftRect,
_In_ int nTopRect,
_In_ int nRightRect,
_In_ int nBottomRect
);

参数

hdc [in]
A handle to the device context.

nLeftRect [in]
The x-coordinate, in logical coordinates, of the upper-left
corner of the rectangle.

nTopRect [in]
The y-coordinate, in logical coordinates, of the upper-left
corner of the rectangle.

nRightRect [in]
The x-coordinate, in logical coordinates, of the lower-right
corner of the rectangle.

nBottomRect [in]
The y-coordinate, in logical coordinates, of the lower-right
corner of the rectangle.

顺便说一下,这是在 Google 上搜索“c++ Rectangle”时的第一个结果

关于C++ 矩形() 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18144368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com