ShiftOS-TheRevival-Old/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb

16 lines
519 B
VB.net
Raw Normal View History

Public Class Desktop
2022-11-21 10:43:53 +07:00
Private Sub Desktop_Load(sender As Object, e As EventArgs) Handles MyBase.Load
2022-11-21 10:43:53 +07:00
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)
2022-11-21 10:43:53 +07:00
'DuWM_FirstWindowSet(Console)
End Sub
End Class