silverlight out of browser - icons
Asked Answered
L

2

9

Does anyone know how to change icons in Silverlight outofbrowser application?

List answered 18/5, 2009 at 18:47 Comment(0)
K
11

Modify AppManifest.xml in your project:

<Deployment.ApplicationIdentity>
    <ApplicationIdentity
        ShortName="xxx"
        Title="xxx">
        <ApplicationIdentity.Blurb>
            xxx
        </ApplicationIdentity.Blurb>
        <ApplicationIdentity.Icons>
            <Icon Size="16x16">icons/16x16.png</Icon>
            <Icon Size="32x32">icons/32x32.png</Icon>
            <Icon Size="48x48">icons/48x48.png</Icon>
            <Icon Size="128x128">icons/128x128.png</Icon>
        </ApplicationIdentity.Icons>
    </ApplicationIdentity>
</Deployment.ApplicationIdentity>

Icons should be in png format images (build action set to Content)

You can read more here.

Kimono answered 18/5, 2009 at 18:50 Comment(0)
M
1

I Have New Idea To Implement This

1 . Click On Sliverlight Project

2 . Select Properties option

3 . Select First tab option Like Silverlight

4 . Click On Out-Of-Browser setting Option

5 . You can Set icons according to your request.......

Manhood answered 26/12, 2012 at 9:51 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.