[Source] Good GUI
Visual Basic - Good GUI
The point of this project it to make the GUI a little bit 'smoother'. By using this, and a little Photoshop skills, you can blend the toolbar with your form and make it look super sleek.
Features:
More Control over the look of the toolbar.
Can still Minimize and Close.
Fades on minimize and close.
Easy to customize (With Photoshop).
Now, don't flame me if you think it looks shit or too basic, I am not very good with Photoshop and its made for people that know shit all about VB.
Code:
Screenshot:

Virus Scans:
VirusTotal
Jotti
If you have any questions, PM me, VM me or just post here.
The point of this project it to make the GUI a little bit 'smoother'. By using this, and a little Photoshop skills, you can blend the toolbar with your form and make it look super sleek.
Features:
More Control over the look of the toolbar.
Can still Minimize and Close.
Fades on minimize and close.
Easy to customize (With Photoshop).
Now, don't flame me if you think it looks shit or too basic, I am not very good with Photoshop and its made for people that know shit all about VB.
Code:
Code:
#Region "Form Eye Candy"
Dim Point As New System.Drawing.Point()
Dim X, Y As Integer
Dim Set1 As String
Private Sub Label7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblClose.Click
Set1 = "Close"
Timer2.Start()
End Sub
Private Sub lblMinimize_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblMinimize.Click
Set1 = "Min"
Timer2.Start()
End Sub
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Opacity -= 0.03
If Opacity = 0 Then
If Set1 = "Min" Then
WindowState = FormWindowState.Minimized
Opacity = 100
Else
End
End If
Timer2.Stop()
End If
End Sub
Private Sub frmText_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmText.MouseDown
X = Control.MousePosition.X - Me.Location.X
Y = Control.MousePosition.Y - Me.Location.Y
End Sub
Private Sub frmToolbar_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmToolbar.MouseDown
X = Control.MousePosition.X - Me.Location.X
Y = Control.MousePosition.Y - Me.Location.Y
End Sub
Private Sub lblMinimize_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblMinimize.MouseDown
X = Control.MousePosition.X - Me.Location.X
Y = Control.MousePosition.Y - Me.Location.Y
End Sub
Private Sub lblMinimize_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblMinimize.MouseMove
If e.Button = MouseButtons.Left Then
Point = Control.MousePosition
Point.X = Point.X - (X)
Point.Y = Point.Y - (Y)
Me.Location = Point
End If
End Sub
Private Sub frmText_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmText.MouseMove
If e.Button = MouseButtons.Left Then
Point = Control.MousePosition
Point.X = Point.X - (X)
Point.Y = Point.Y - (Y)
Me.Location = Point
End If
End Sub
Private Sub frmToolbar_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmToolbar.MouseMove
If e.Button = MouseButtons.Left Then
Point = Control.MousePosition
Point.X = Point.X - (X)
Point.Y = Point.Y - (Y)
Me.Location = Point
End If
End Sub
#End Region

Virus Scans:
VirusTotal
Jotti
If you have any questions, PM me, VM me or just post here.
Visual Basic - Good GUI.rar


