javafx 8 - How to set a Stage in java FX8 always show override on another stage -


i have 2 stage. first stage set full-screen , have button call second stage,the second stage design same dialog confirm . when call second stage want show override on first stage (currently. second stage show , when click on first stage first stage override on second stage)

please me. thank!

if understand question correctly, need second stage on top of first stage.

you can achieve same setting stage.initowner() along modality.window_modal second stage :

stage.initowner(firststage); stage.initmodality(modality.window_modal); 

Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -