Microsoft XP Style Buttons and Controls on Form in .Net
<!–[if !supportEmptyParas]–>
Visual style is the user-modifiable appearance of the user interface of an application or operating system. By default, Windows XP provides a new visual style. The scroll bars and title bar of a Windows Form will automatically use the new visual style when the form is run on Windows XP. If your application calls the EnableVisualStyles method, most of your Windows Forms controls will automatically use the visual style when your application is run on Windows XP
<!–[if !supportEmptyParas]–> <!–[endif]–>
Private Sub frmDND1Main_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Application.EnableVisualStyles()
End Sub
<!–[if !supportEmptyParas]–> <!–[endif]–>
<!–[if !supportEmptyParas]–> <!–[endif]–>
The same can be achieved in the designer :
<!–[if !supportEmptyParas]–> <!–[endif]–>
