Hello Guys, I've been playing with slider on silverlight. Now the result is this, a simple resizing image thru slider. The Image below is the default size of my sample. And the second Image below are the result when the slider slide to right and top. The xaml layout are very simple: <Slider Minimum="80" Maximum="238" Height="23" HorizontalAlignment="Center" Name="sldBottom" Width="246" Margin="27,226,27,1" /> <Slider Height="212" Minimum="80" Maximum="209" Name="sldRight" Width="28" Orientation="Vertical" ......
Hi Guys, I have basic sample on how to use some features of mouse events in Silverlight. The picture. The Mouse Activity Log is to record the all activity done on the projects. My simple snippets on how to add on the textbox is: protected void MessageLog(string msg) { txtMouseLog.Text += msg; } For the Mouse Wheel sample this is the snippets: private void chkMouseWheel_Checked(object sender, RoutedEventArgs e) { image1.MouseWheel += new MouseWheelEventHandler(imag... } void image1_MouseWheel(object ......