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.
我想根据用户偏好调整我的全屏 OOB silverlight 应用程序的大小。
用户应该能够调整大小并将全屏应用程序保留为小部件。
当我尝试应用调整大小属性时,它会应用到 localhost 而不是全屏窗口。
谢谢,
卡提克。
if (App.Current.MainWindow.WindowState == WindowState.Normal) { App.Current.MainWindow.WindowState = WindowState.Maximized; } else { App.Current.MainWindow.WindowState = WindowState.Normal; }