新建一个picture用户对象:uo_picpicturename属性设置为按钮使用的图片外部函数调用:FUNCTION ulong CreateRoundRectRgn(ulong X1,ulong Y1,ulong X2,ulong Y2,ulong X3,ulong Y3) LIBRARY "gdi32.dll"FUNCTION ulong SetWindowRgn(ulong hWnd,ulong hRgn,boolean bRedraw) LIBRARY "user32.dll"constructor事件脚本:ulong width1,height1,rgnh;width1=UnitsToPixels(width,XUnitsToPixels!)+1height1=UnitsToPixels(height,YUnitsToPixels!)+1rgnh = CreateRoundRectRgn(7, 7, width1 - 7 , height1 - 7, 50, 50)//参数可适当调整以适应按钮的图片SetWindowRgn(handle(this), rgnh, True)注一:以上方法同样适用于窗口,只需要把constructor事件脚本放到窗口的open事件里就可以了。注二:CreateRoundRectRgn函数说明创建一个圆角矩形,该矩形由X1,Y1,X2,Y2确定,并由X3,Y3确定的椭圆描述圆角弧度参数 类型及说明X1,Y1 Long,矩形左上角的X,Y坐标X2,Y2 Long,矩形右下角的X,Y坐标X3 Long,圆角椭圆的宽。其范围从0(没有圆角)到矩形宽(全圆)Y3 Long,圆角椭圆的高。其范围从0(没有圆角)到矩形高(全圆)