窗口在所有虚拟桌面中可见

时间:2017-11-07 20:02:47

标签: c# .net wpf

WPF中的我的应用程序是一种系统监视器,因此我希望它始终可见,即使在Windows 10的每个虚拟桌面中也是如此。 是否只能使用C#?

2 个答案:

答案 0 :(得分:4)

看起来你要做的就是在主窗口上设置WS_EX_TOOLWINDOW。每https://superuser.com/questions/950960/pin-applications-to-multiple-desktops-in-windows-10

示例代码:

@Component
@ComponentScan()
public class CustomAuthenticationProvider implements AuthenticationProvider {

         @Autowired
         private JdbcTemplate jdbcTemplate;//Getting nullpointer on that Object
}

答案 1 :(得分:0)

我发现包装.Net 4.6兼容: VirtualDesktop

很好的解决方案! TY all; - )