我有用JavaFX编写的应用程序,我将初级阶段设置为全屏并始终位于顶部:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "ApplicationCookie",
LoginPath = "/Account/Logon",
CookieDomain = ".stackoverflow.com"
});
在后台线程中我启动了另一个应用程序,窗口出现在这个应用程序窗口上(这个窗口也可能属性“总是在顶部”)。
如何将窗口配置为始终位于顶部?
答案 0 :(得分:0)
试试这个
primaryStage.initModality(Modality.APPLICATION_MODAL);