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
Post a Comment