Silverlight: Access client desktop- Display properties - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:49:45Z http://stackoverflow.com/feeds/question/910518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties 1 Silverlight: Access client desktop- Display properties Blessy Antony 2009-05-26T12:52:50Z 2009-11-10T15:28:14Z <p>Hi,</p> <p>I want to access the display properties of the client desktop in silverlight application and modify the application layout according 2 the ones set on client machine. When we right click on desktop and choose properties we get display properties dialog. i want to access appearance and theme properties from this. i hv to retrieve the appearance properties like font, theme etc and apply them in my silverlight application. I am also not sure whether this can be done in a normal web application.</p> <p>Tried to google it but could find anything except code for resizing. But I want to access not only the screen width and height but the appearance settings also.</p> <p>Any help would be appreciated.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties/910536#910536 0 Answer by spender for Silverlight: Access client desktop- Display properties spender 2009-05-26T12:56:33Z 2009-05-26T12:56:33Z <p>No way. This is private data that should not be exposed to any other domains.</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties/910563#910563 0 Answer by Jason Miesionczek for Silverlight: Access client desktop- Display properties Jason Miesionczek 2009-05-26T13:02:45Z 2009-05-26T13:02:45Z <p>Not sure if this applies to Silverlight, but check out <a href="http://stackoverflow.com/questions/541468/how-do-i-match-my-controls-styles-to-the-current-theme-wpf/543866#543866">this question</a> regarding different styles based on the current windows theme.</p> <p>As far as the width/height, unless your running your silverlight app in fullscreen, what should be more important is the browser window width/height as that will not always be the same size as the screen itself. You should be able to google for code for how to get the browser window width/height rather easily.</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties/987602#987602 0 Answer by Jacob Adams for Silverlight: Access client desktop- Display properties Jacob Adams 2009-06-12T16:19:50Z 2009-06-12T16:19:50Z <p>The Silverlight sandbox prevents access to the client machine. You could try using a ActiveX control to expose the data to the silverlight control or you could use a WPF browser app with elevated trust permissions.</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties/1708800#1708800 0 Answer by prakash for Silverlight: Access client desktop- Display properties prakash 2009-11-10T15:28:14Z 2009-11-10T15:28:14Z <p>you can use javascript to get height and width , and send those values as startup params to silverlight application</p>