silverlight oob without window -


can silverlight app without window??

i need somthing top bar (always on top) of windows remote desktop.

any chances???

silverlight 4, within trusted out of browser application, supports showing window on top, , customizing window's chrome (with limitations).

void mainpage_loaded(object sender, routedeventargs e) {     if (app.current.haselevatedpermissions && && application.current.isrunningoutofbrowser)     {         dispatcher.begininvoke(() =>         {             app.current.host.content.topmost = true;         });     } } 

in out of browser settings (project properties/silverlight/out of browser settings...), select option want, maybe borderless round corners example.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -