mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-02-02 14:27:35 +00:00
19 lines
475 B
VB.net
19 lines
475 B
VB.net
Module DesktopManager
|
|
Public Sub StartX()
|
|
Desktop.Show()
|
|
Desktop.FormBorderStyle = FormBorderStyle.None
|
|
Desktop.WindowState = FormWindowState.Maximized
|
|
Desktop.TopMost = False
|
|
IsConsoleParent = False
|
|
OnlyOne = True
|
|
Console.Close()
|
|
Cursor.Show()
|
|
End Sub
|
|
|
|
Public Sub StopX()
|
|
Desktop.Close()
|
|
Cursor.Hide()
|
|
Console_Full()
|
|
IsConsoleParent = True
|
|
End Sub
|
|
End Module
|