Browse by Tags
All Tags »
SilverLight 2 (
RSS)
Sorry, but there are no more tags available to filter with.
In my previous post on implementing MultiScaleImage behavior like I have mentioned that I will demonstrate on how to implement a panning behavior like to an Image on SilverLight2 Beta. In this post I will implement panning behavior like on Image control. Step 1: First we have to Subscribe to the following events, MouseLeftButtonUp , MouseLeftButtonDown , MouseMove. We also need to declare two variables that will save the mouse down position and the status of the mouse button(Up/Down). Variables:...
In the previous version of SilverLight we could enter FullScreen mode in our Content using BrowserHost.IsFullScreen. In SilverLight 2 Beta we no longer have BrowserHost , Instead we can use: App .Current.Host.Content.IsFullScreen = true ; I have added a source code Sample Enjoy!
Using MultiScaleImage control we get a vivid user friendly image manipulation experience in this quick tip I will demonstrate how to provide the same experience using Image control in SilverLight 2 Beta. In the Expression Blend Blog we can find the source code on how to implement Zooming using MultiScaleImage I have used this code and replaced the MultiScaleImage with Image: < Grid x : Name ="LayoutRoot" Background ="White"> < Image Width ="770"...