i want to develop an app for manage the desktop in windows using C# (similar to spaces on mac or multiple desktops on linux). I found some information about connecting the win32 api with c# but i don’t want that, i want to manage the windows desktop directly with c#, do you know the way?
Share
To interact with Windows in a standardized fashion you need to use its API; the same is true for any library, i.e. how else would you to “connect” to it? Using the Win32 API in c# is fairly similar to using it in any other language.
There are hundreds of examples of how to do this in c#.
Further reading which suggests that you can create multiple desktop objects.