aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-21 10:43:53 +0700
committerEverythingWindows <[email protected]>2022-11-21 10:43:53 +0700
commitc5b2c3e370cf17a4b4ee3d5a4928e3663ab72a1d (patch)
treed8163ca4462d33f061335973d19be2ddabbc0c8c /ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
parent3f4edf1b79ee4ee5a73251930af641bcd0db225e (diff)
downloadshiftos-therevival-old-c5b2c3e370cf17a4b4ee3d5a4928e3663ab72a1d.tar.gz
shiftos-therevival-old-c5b2c3e370cf17a4b4ee3d5a4928e3663ab72a1d.tar.bz2
shiftos-therevival-old-c5b2c3e370cf17a4b4ee3d5a4928e3663ab72a1d.zip
Dual Window Manager development
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb')
-rw-r--r--ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb14
1 files changed, 14 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb b/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
index 4ddf223..853bb8a 100644
--- a/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
+++ b/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/Desktop.vb
@@ -1,3 +1,17 @@
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)
+ DuWM_SingleWindowSet(Console)
+ End Sub
End Class \ No newline at end of file