DCSIMG
SilverLight 2 - Design .Net

Design .Net

Designers, Controls And everything between them.

Browse by Tags

All Tags » SilverLight 2 (RSS)
Sorry, but there are no more tags available to filter with.
SliverLight2 Beta Quick Tip Panning: Implement MultiScaleImage behavior like in Image Control
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:...
SilverLight 2 Beta Quick Tip - FullScreen
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!
SliverLight2 Beta Quick Tip: Implement MultiScaleImage behavior like in Image Control
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"...