How do we ask which window to open when I open a project programatically ?

已回答

I'm currently using the below given method to get the project object based on folder location

val projectManager = ProjectManager.getInstance()
val project = projectManager.loadAndOpenProject(projectLocation)!!

 

0

If you'd search for such "New projects can..." message, you'll be able to find the exact place of such Dialog: ProjectUtil.confirmOpenNewProject(boolean)

1

请先登录再写评论。