Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以最大限度地启动 Out of Browser 应用程序?
您可以在配置 Out of Browser 设置时设置 Left、Top、Height 和 Width 属性,但我看不到使应用程序最大化的方法。
if (Application.Current.IsRunningOutOfBrowser) { Application.Current.MainWindow.WindowState = WindowState.Maximized; Application.Current.MainWindow.TopMost = true; }