本文介绍了如何使用ArcTo函数绘制弧???的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,
如何在MFC中绘制弧线?我尝试使用ArcTo(...)函数,但没有用.:confused:
这是我的代码:

hello,
How can draw arc in mfc? i try to use ArcTo(...) function but it didn''t work.:confused:
Here is my code:

BOOL CModlessDlg::OnInitDialog()
{
	CDialog::OnInitDialog();
	CClientDC d(this);
	d.ArcTo(20,30,30,45,20,60,45,20);
	return TRUE;  // return TRUE  unless you set the focus to a control 
}


请帮忙.
about


please help.
regard

推荐答案



这篇关于如何使用ArcTo函数绘制弧???的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 20:24