Silverlight: Access client desktop- Display properties - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T10:49:45Zhttp://stackoverflow.com/feeds/question/910518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties1Silverlight: Access client desktop- Display propertiesBlessy Antony2009-05-26T12:52:50Z2009-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#9105360Answer by spender for Silverlight: Access client desktop- Display propertiesspender2009-05-26T12:56:33Z2009-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#9105630Answer by Jason Miesionczek for Silverlight: Access client desktop- Display propertiesJason Miesionczek2009-05-26T13:02:45Z2009-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#9876020Answer by Jacob Adams for Silverlight: Access client desktop- Display propertiesJacob Adams2009-06-12T16:19:50Z2009-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#17088000Answer by prakash for Silverlight: Access client desktop- Display propertiesprakash2009-11-10T15:28:14Z2009-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>