A set of .NET Framework managed libraries for developing graphical user interfaces.
Hello @Desmond O'Toole ,
Thank you for sharing the video.
It is possible that your project is using a modern version of Visual Studio and .NET. In these newer templates, the application settings have been redesigned, which explains why the "Enable XP visual styles" checkbox is no longer available in the Project Properties window.
To restore the classic 3D drop-shadow effect across your entire application, it might be beneficial to turn off the modern visual styles directly within your startup code. If you are using C#, you can try the following steps:
- Open the
Program.csfile in your project via the Solution Explorer. - Locate the
static void Main()method. - Look for a line of code that says either
Application.EnableVisualStyles();orApplicationConfiguration.Initialize();. - Try commenting out or deleting that specific line.
By running the application without that line, the system should fall back to the older, classic Windows rendering, giving your buttons that 3D look you prefer.
(Note: If your project is in VB.NET, this behavior is usually controlled within the Application Events or Application.myapp settings rather than Program.cs.)
I hope this suggestion helps you achieve the visual style you are looking for. Please let me know how it goes or if you would like me to look into anything else. If you found my response helpful or informative, I would greatly appreciate it if you could follow this guide for your confirmation.
Thank you.