In a previous Blog entry I mentioned that I had SUCH a hassle to overlay a subimage with something else to make it look "seemless".
Well - I found a blog where they explained how they did it for a msi as a whole. So I will try and use it to fit my own needs - but here is that site. NJoy!
I uploaded a test app previously to live for testing purposes and couldn't remeber HOW today :)
So here are the steps: > Add a file "manifest.xml" to the directory your XAP file is in... it should look something like this: 2.0 Test.xap
> Zip up the manifest.xml and *.xap and any other data directory you might have (eg. TestFiles) > Log into the http://silverlight.live.com site. > Go to Manager Applications > Upload the Zip and follow the instructions > Copy and paste the html you need into the web / blog u need to > Done
The Z-Order in Silverlight is (according to a blog I read) a bit messy.
So - what you can do to set the Z-Order is to change the Canvas.ZIndexProperty. This still doesn't work though, so one guy suggests to change the Opacity directly after changing this property. In my case the original Opacity was eg. 1... then it will look like this.
I often have to go back to see how to use delegates. I don't know WHY, but I keep forgetting the fundamentals of if...
Well - basically in Class B, you will create a Delegate. Within this class u will raise an event through the delegate. This event will then have to be handled in Class A (which uses Class B)..