How do we make curved 3d buttons?
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Is there a way to make your button curved? I'm not using .NET, just plain visual c++ and mfc. Thanks for all the help. waxie:rose:
I think the buttons can be made curved using
SetWindowRgn(...)
. You can first create the region usingCreateEllipticRgn(...)
or something like that. If the result is not what you want then combining regions withowner-draw
buttons will do it. There are lots of owner-draw buttons here on CP. this is this.