1
1
// Author: Markus Scholtes, 2024
2
- // Version 1.18 , 2024-06-16
2
+ // Version 1.19 , 2024-09-01
3
3
// Version for Windows 10 1809 to 22H2
4
4
// Compile with:
5
5
// C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe VirtualDesktop.cs
20
20
[ assembly: AssemblyCopyright ( "© Markus Scholtes 2024" ) ]
21
21
[ assembly: AssemblyTrademark ( "" ) ]
22
22
[ assembly: AssemblyCulture ( "" ) ]
23
- [ assembly: AssemblyVersion ( "1.18 .0.0" ) ]
24
- [ assembly: AssemblyFileVersion ( "1.18 .0.0" ) ]
23
+ [ assembly: AssemblyVersion ( "1.19 .0.0" ) ]
24
+ [ assembly: AssemblyFileVersion ( "1.19 .0.0" ) ]
25
25
26
26
// Based on http://stackoverflow.com/a/32417530, Windows 10 SDK, github project Grabacr07/VirtualDesktop and own research
27
27
@@ -325,14 +325,12 @@ internal static string GetAppId(IntPtr hWnd)
325
325
#endregion
326
326
327
327
#region public interface
328
- public class WindowInformation
329
- { // stores window informations
330
- public string Title { get ; set ; }
331
- public int Handle { get ; set ; }
332
- }
333
-
334
328
public class Desktop
335
329
{
330
+ // get window handle to class and window name
331
+ [ DllImport ( "User32.dll" , CharSet = CharSet . Auto , SetLastError = true ) ]
332
+ private static extern IntPtr FindWindow ( string lpClassName , string lpWindowName ) ;
333
+
336
334
// get process id to window handle
337
335
[ DllImport ( "user32.dll" ) ]
338
336
private static extern uint GetWindowThreadProcessId ( IntPtr hWnd , out int lpdwProcessId ) ;
@@ -507,7 +505,7 @@ public static void RemoveAll()
507
505
{ // remove all desktops but visible
508
506
int desktopcount = DesktopManager . VirtualDesktopManagerInternal . GetCount ( ) ;
509
507
int desktopcurrent = DesktopManager . GetDesktopIndex ( DesktopManager . VirtualDesktopManagerInternal . GetCurrentDesktop ( ) ) ;
510
-
508
+
511
509
if ( desktopcurrent < desktopcount - 1 )
512
510
{ // remove all desktops "right" from current
513
511
for ( int i = desktopcount - 1 ; i > desktopcurrent ; i -- )
@@ -535,27 +533,27 @@ public bool IsVisible
535
533
536
534
public void MakeVisible ( )
537
535
{ // make this desktop visible
538
- WindowInformation wi = FindWindow ( "Program Manager" ) ;
536
+ IntPtr hWnd = FindWindow ( "Progman" , "Program Manager" ) ;
539
537
540
538
// activate desktop to prevent flashing icons in taskbar
541
539
int dummy ;
542
- uint DesktopThreadId = GetWindowThreadProcessId ( new IntPtr ( wi . Handle ) , out dummy ) ;
540
+ uint DesktopThreadId = GetWindowThreadProcessId ( hWnd , out dummy ) ;
543
541
uint ForegroundThreadId = GetWindowThreadProcessId ( GetForegroundWindow ( ) , out dummy ) ;
544
542
uint CurrentThreadId = GetCurrentThreadId ( ) ;
545
543
546
544
if ( ( DesktopThreadId != 0 ) && ( ForegroundThreadId != 0 ) && ( ForegroundThreadId != CurrentThreadId ) )
547
545
{
548
546
AttachThreadInput ( DesktopThreadId , CurrentThreadId , true ) ;
549
547
AttachThreadInput ( ForegroundThreadId , CurrentThreadId , true ) ;
550
- SetForegroundWindow ( new IntPtr ( wi . Handle ) ) ;
548
+ SetForegroundWindow ( hWnd ) ;
551
549
AttachThreadInput ( ForegroundThreadId , CurrentThreadId , false ) ;
552
550
AttachThreadInput ( DesktopThreadId , CurrentThreadId , false ) ;
553
551
}
554
552
555
553
DesktopManager . VirtualDesktopManagerInternal . SwitchDesktop ( ivd ) ;
556
554
557
555
// direct desktop to give away focus
558
- ShowWindow ( new IntPtr ( wi . Handle ) , SW_MINIMIZE ) ;
556
+ ShowWindow ( hWnd , SW_MINIMIZE ) ;
559
557
}
560
558
561
559
public Desktop Left
@@ -685,55 +683,6 @@ public static void UnpinApplication(IntPtr hWnd)
685
683
DesktopManager . VirtualDesktopPinnedApps . UnpinAppID ( appId ) ;
686
684
}
687
685
}
688
-
689
- // prepare callback function for window enumeration
690
- private delegate bool CallBackPtr ( int hwnd , int lParam ) ;
691
- private static CallBackPtr callBackPtr = Callback ;
692
- // list of window informations
693
- private static List < WindowInformation > WindowInformationList = new List < WindowInformation > ( ) ;
694
-
695
- // enumerate windows
696
- [ DllImport ( "User32.dll" , SetLastError = true ) ]
697
- [ return : MarshalAs ( UnmanagedType . Bool ) ]
698
- private static extern bool EnumWindows ( CallBackPtr lpEnumFunc , IntPtr lParam ) ;
699
-
700
- // get window title length
701
- [ DllImport ( "User32.dll" , CharSet = CharSet . Auto , SetLastError = true ) ]
702
- private static extern int GetWindowTextLength ( IntPtr hWnd ) ;
703
-
704
- // get window title
705
- [ DllImport ( "User32.dll" , CharSet = CharSet . Auto , SetLastError = true ) ]
706
- private static extern int GetWindowText ( IntPtr hWnd , StringBuilder lpString , int nMaxCount ) ;
707
-
708
- // callback function for window enumeration
709
- private static bool Callback ( int hWnd , int lparam )
710
- {
711
- int length = GetWindowTextLength ( ( IntPtr ) hWnd ) ;
712
- if ( length > 0 )
713
- {
714
- StringBuilder sb = new StringBuilder ( length + 1 ) ;
715
- if ( GetWindowText ( ( IntPtr ) hWnd , sb , sb . Capacity ) > 0 )
716
- { WindowInformationList . Add ( new WindowInformation { Handle = hWnd , Title = sb . ToString ( ) } ) ; }
717
- }
718
- return true ;
719
- }
720
-
721
- // get list of all windows with title
722
- public static List < WindowInformation > GetWindows ( )
723
- {
724
- WindowInformationList = new List < WindowInformation > ( ) ;
725
- EnumWindows ( callBackPtr , IntPtr . Zero ) ;
726
- return WindowInformationList ;
727
- }
728
-
729
- // find first window with string in title
730
- public static WindowInformation FindWindow ( string WindowTitle )
731
- {
732
- WindowInformationList = new List < WindowInformation > ( ) ;
733
- EnumWindows ( callBackPtr , IntPtr . Zero ) ;
734
- WindowInformation result = WindowInformationList . Find ( x => x . Title . IndexOf ( WindowTitle , StringComparison . OrdinalIgnoreCase ) >= 0 ) ;
735
- return result ;
736
- }
737
686
}
738
687
#endregion
739
688
}
@@ -743,6 +692,7 @@ namespace VDeskTool
743
692
{
744
693
static class Program
745
694
{
695
+
746
696
static bool verbose = true ;
747
697
static bool breakonerror = true ;
748
698
static bool wrapdesktops = false ;
@@ -2572,7 +2522,7 @@ private static void InsertDesktop(int InsertIndex1, int InsertIndex2)
2572
2522
2573
2523
static void HelpScreen ( )
2574
2524
{
2575
- Console . WriteLine ( "VirtualDesktop.exe\t \t \t \t Markus Scholtes, 2024, v1.18 \n " ) ;
2525
+ Console . WriteLine ( "VirtualDesktop.exe\t \t \t \t Markus Scholtes, 2024, v1.19 \n " ) ;
2576
2526
2577
2527
Console . WriteLine ( "Command line tool to manage the virtual desktops of Windows 10." ) ;
2578
2528
Console . WriteLine ( "Parameters can be given as a sequence of commands. The result - most of the" ) ;
0 commit comments