wpf - caliburn.micro not showing dialog after application install -


i've got bit of problem caliburn micro 1.4.0 , wpf. here's rundown of problem. i've created visual studio installer project. added project output app. far good. application installs without problem. can run application without problems, when try close application popup dialog should appear. nothing happens, no dialog, black window nothing more.

here's code shellviewmodel show dialog:

public override void canclose(action<bool> callback)         {             var modald = ioc.get<modaldialogviewmodel>();             modald.titulomodal = "encerrar aplicação";             modald.mensagemmodal = "deseja encerrar aplicação?";             modald.modalheight = 250;             modald.modalwidth = 250;             bool? result = windowmanagerwindow.showdialog(modald);             if (result == null) return;             if ((bool) result)             {                 callback(true);             }             else             {                 callback(false);             }         } 

any ideas on how solve issue? appreciated in advance

i have responded on caliburn.micro discussion created. don't think caliburn.micro problem, rather sounds missing dll's.

i first confirm there no warnings on build , after ensure installation has dll's in debug bin.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -