aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
blob: 404f97a8585bc6cc04b5117d7b63b2d3dad80e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Public Class Desktop
    Private Sub Desktop_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Desktop_KeyPress(sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = Keys.T AndAlso Keys.Control Then
            MsgBox("dangit")
            DuWM_FirstWindowSet(Console)
        End If
    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) 
        'DuWM_FirstWindowSet(Console)
    End Sub
End Class