mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-23 10:12:16 +00:00
16 lines
No EOL
540 B
VB.net
16 lines
No EOL
540 B
VB.net
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) Handles Button1.Click
|
|
'DuWM_FirstWindowSet(Console)
|
|
End Sub
|
|
End Class |