mirror of
https://bitbucket.org/Ryfon/mux.git
synced 2026-01-06 03:40:13 -06:00
12 lines
224 B
C++
12 lines
224 B
C++
#pragma once
|
|
|
|
class CGDIPlusHelper
|
|
{
|
|
public:
|
|
CGDIPlusHelper(void);
|
|
~CGDIPlusHelper(void);
|
|
|
|
// 创建圆角矩形 [12/14/2009 hemeng]
|
|
static GraphicsPath* MakeRoundRect(Rect rect, INT percentageRounded);
|
|
};
|