How can I make Windows 95 style buttons in Visual C#?
问题 I am writing a program and I am just curious of how to put buttons that look like in Windows 95: (source: aos.co.za) I am using Visual C# Express 2010 with Winforms. Is this possible in the compiler/IDE I described above? 回答1: Normally you should let the user make that choice. They have the ability to do so. But, to answer the question, you need to disable the visual styles feature that was introduced in XP. Visual styles are enabled with a call to: Application.EnableVisualStyles(); typically