Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Mar 30, 2020 13:52:54 GMT -8
The Windows classic theme, starting with Windows 3.1, has a 3D button style. How are the 3D buttons generated? Do they use bitmaps? If so, where are the bitmaps stored? If it doesn't use bitmaps, what is the code used to generate the 3D buttons?
|
|
|
Post by powerplayer on Mar 31, 2020 16:26:40 GMT -8
shell43.dll open it with reshacker look for yourself
|
|
|
Post by anixx on Mar 31, 2020 21:08:14 GMT -8
The Windows classic theme, starting with Windows 3.1, has a 3D button style. How are the 3D buttons generated? Do they use bitmaps? If so, where are the bitmaps stored? If it doesn't use bitmaps, what is the code used to generate the 3D buttons? There are no bitmaps. The things are getting drawn by GDI. The arrows and other signs on the buttons are characters from a font.
|
|
|
Post by leet on Mar 31, 2020 23:20:16 GMT -8
The Windows classic theme, starting with Windows 3.1, has a 3D button style. How are the 3D buttons generated? Do they use bitmaps? If so, where are the bitmaps stored? If it doesn't use bitmaps, what is the code used to generate the 3D buttons? There are no bitmaps used. The buttons are being drawn via GDI (the Windows Graphics Device Interface) ( API: FrameRect(HDC hDC, const RECT *lprc, HBRUSH hbr)). I think you can do it using a semi-transparent brush.
|
|