Silverlight – Home

Silverlight Tutorial PDF Version Quick Guide Resources Job Search Discussion Silverlight is a platform for building rich internet applications. This tutorial will explain the concepts behind Silverlight, and will show you how to build it into your web applications. After completing this tutorial, you will have a better understanding of Silverlight applications and how to develop them using XAML and C#. Audience This tutorial has been prepared for anyone who has a basic knowledge of XAML and C# and has an urge to develop websites. After completing this tutorial, you will find yourself at a moderate level of expertise in developing websites using Silverlight. Prerequisites Before you start proceeding with this tutorial, we are assuming that you are already aware about the basics of XAML and C#. If you are not well aware of these concepts, then we will suggest you to go through our short tutorials on XAML and C#. Print Page Previous Next Advertisements ”;

Silverlight – Input Handling

Silverlight – Input Handling ”; Previous Next In this chapter, we will learn how to handle user input in Silverlight applications. Silverlight provides a powerful API with the help of which an application can get input from various devices such as mouse, keyboard, and touch etc. Input Types There are several different ways, a user can interact with your application. The most obvious way is with a mouse. Silverlight offers events for tracking − Mouse movements Button clicks, and Wheel activity There is also the keyboard, of course, and Silverlight also supports touch screen input. If you are familiar with touch support in Windows, you know that touch input can be represented either as low-level events providing detailed information, or it can be summarized into high-level events called gestures. Mouse Events Let us get started by looking at the mouse input events Silverlight offers. Some events are concerned with the movement of the mouse pointer. The MouseMove event is raised anytime the pointer moves while it is over the elements to which you have attached the handler. You also get MouseEnter and MouseLeave events to notify you of when the mouse moves in to, and out of the element. Given below is the XAML code in which ellipse and TextBlock is added. <UserControl x:Class=”MouseInput.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008” xmlns:mc = “http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable = “d” d:DesignHeight = “300” d:DesignWidth = “400”> <Grid x:Name = “LayoutRoot” Background = “White”> <TextBlock x:Name = “mouseText” FontSize = “40” VerticalAlignment = “Top” Height = “76” Margin = “0,10,0,0” /> <Ellipse Name = “myEllipse” Width = “320” Height = “150” HorizontalAlignment = “Left” VerticalAlignment = “Top” Margin = “27,103,0,0” Stroke = “Black” StrokeThickness = “10” Fill = “#00FF0000” MouseEnter = “myEllipse_MouseEnter” MouseLeave = “myEllipse_MouseLeave” MouseMove = “myEllipse_MouseMove” /> </Grid> </UserControl> Given below is the implementation for different mouse input events. using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; namespace MouseInput { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void myEllipse_MouseEnter(object sender, MouseEventArgs e) { mouseText.Text = “Mouse Enter”; myEllipse.Stroke = new SolidColorBrush(Colors.Blue); } private void myEllipse_MouseLeave(object sender, MouseEventArgs e) { mouseText.Text = “Mouse Leave”; myEllipse.Stroke = new SolidColorBrush(Colors.Black); } private void myEllipse_MouseMove(object sender, MouseEventArgs e) { mouseText.Text = “Mouse Move: ” + e.GetPosition(myEllipse); } } } When the above code is compiled and executed, you will see the following output. When the mouse enters the ellipse, you will see the change in color and coordinates. When the mouse leaves the ellipse, it will show a message ‘mouse leave’ and will change to the default color. Keyboard The easiest way for a user to enter textual data into your application is through the keyboard, where available. Remember that not all mobile devices have keyboards except for laptops and desktops. Silverlight offers two straightforward events for keyboard input, KeyUp and KeyDown. Both of these pass a KeyEventArgs to the handler, and the Key property indicates which key was pressed. In the below example some of the keyboard input are handled. The following example defines a handler for the Click event and a handler for the KeyDown event. Given below is the XAML code in which different UI elements are added. <UserControl x:Class = “KeyboardInput.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008” xmlns:mc = “http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable = “d” d:DesignHeight = “300” d:DesignWidth = “400”> <Grid x:Name = “LayoutRoot” Background = “White”> <StackPanel Orientation = “Horizontal” KeyDown = “OnTextInputKeyDown”> <TextBox Width = “400” Height = “30” Margin = “10”/> <Button Click = “OnTextInputButtonClick” Content = “Open” Margin = “10” Width = “50” Height = “30”/> </StackPanel> </Grid> </UserControl> Given below is the C# code in which different keyboard and click events are handled. using System.Windows; using System.Windows.Controls; using System.Windows.Input; namespace KeyboardInput { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void OnTextInputKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.O) { handle(); e.Handled = true; } } private void OnTextInputButtonClick(object sender, RoutedEventArgs e) { handle(); //e.Handled = true; } public void handle() { MessageBox.Show(“Do you want to open a file?”); } } } When the above code is compiled and executed, you will see the following − If you click the Open button or click in the textbox and click OK, then it will display the same message. We recommend you to execute the above example for better understanding. Print Page Previous Next Advertisements ”;

Silverlight – Project Types

Silverlight – Project Types ”; Previous Next If you create a new project in Visual Studio, you will see four types of project in the right pane of the dialog box. They are − Silverlight Application Silverlight Class Library Class Library (Portable) Silverlight Navigation Application The first two, Silverlight Application and Silverlight Class Library, are straightforward enough. These are analogous to executables in DLLs in the world of classic Windows applications. Both build DLLs because of how Silverlight applications are deployed. Conceptually, a Silverlight Application project builds a program, which can be run, while the Class Library project builds a library designed to be incorporated into other applications. You can build a class library if you are planning to build multiple applications, and want to reuse the common code. If you are planning to sell the controls that other people will use in their applications, again a library is the thing to build. The other project types are a little less obvious, so we will look at those in detail later in this chapter. Silverlight Web Applications Silverlight applications are downloaded from the web, so you will normally have a web project associated with the Silverlight project. There are a couple of features of Visual Studio, designed to manage the relationship between these projects. Let us have a look at a simple example of Silverlight Application project again. Step 1 − Open Visual Studio. Click the File menu, point to New and then click Project. Step 2 − A New Project dialog box will open. Under Templates, select Visual C# and then click Silverlight. In the right pane, choose Silverlight Application. Enter a project name and a location on your hard drive to save your project. The Silverlight project itself is just going to build the Silverlight content, and that content is just one asset amongst many that are going to make up the whole web application. Click OK. Step 3 − Check the Host the Silverlight application checkbox. The default is an ASP.NET Web Application Project. Step 4 − MS-Visual Studio has created two projects, the Silverlight project and an ASP.NET web application. Now, we need an ASP.NET web application. You can see this in the Solution Explorer window as shown below. Anything that can serve up the content via HTTP will do but this is Visual Studio, and it understands the ASP.NET web technology, so that is what it gives us. To demonstrate that Silverlight does not depend on any particular server-side technology, let us delete this .aspx file, leaving just the plain static HTML file. Step 5 − Right-click FirstExampleTestpage.aspx. From the list of options, click Delete. Step 6 − Set FirstExampleTestPage.html as the Start page. The MainPage.xaml file defines the user interface for Silverlight content. Either you can write XAML code directly or you can also use Toolbox to drag and drop different UI elements. Step 7 − Given below is a simple code in MainPage.xaml in which a Button and a TextBlock are defined inside the StackPanel. <UserControl x:Class = “FirstExample.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008” xmlns:mc = “http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable = “d” d:DesignHeight = “300” d:DesignWidth = “400”> <Grid x:Name = “LayoutRoot” Background = “White”> <StackPanel> <TextBlock x:Name = “TextMessage” Text = “Hello World!” Margin = “5”> </TextBlock> <Button x:Name = “ClickMe” Click = “ClickMe_Click” Content = “Click Me!” Margin = “5”> </Button> </StackPanel> </Grid> </UserControl> Step 8 − This example assumes that you have created an event-handling method named ClickMe_Click. Here is what it looks like in the MainPage.xaml.cs file. using System.Windows; using System.Windows.Controls; namespace FirstExample { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void ClickMe_Click(object sender, RoutedEventArgs e) { TextMessage.Text = “Congratulations! you have created your first Silverlight Applicatoin”; } } } Step 9 − A Silverlight application can be run on any installed browsers. Step 10 − When the above code is compiled and executed, you will see the following webpage. Silverlight Navigation Application The Silverlight Navigation Application template builds a project similar to an ordinary Silverlight app. There is nothing fundamentally different about the two project types. The Navigation template just includes some additional code you could easily add yourself. As the name suggests, it supports web-like navigation within the Silverlight application. Let us create a Navigation application. Step 1 − Select Silverlight Navigation Application from the right pane in the New Project dialog box. Step 2 − Follow the settings as you have done for the Silverlight Web Application. Step 3 − Click the OK button. A window will open as shown below. These usually have an associated web project, so we will have one of those. It creates two projects as described before, but as you can see, the default user interface looks a bit less blank. Step 4 − It provides an Application Chrome, including a Navigation bar. The solution contains a few extra files. This Styles file defines the look and feel for the Navigation bar. In this Views folder, we see a couple of pages, and also a window for showing errors. As you can see, when you run the application, it shows a Home page with some placeholder content. Step 5 − When you click the About button, it will navigate to the About page. The important part is that you can then use the browser Back and Forward buttons to retrace the steps. Normally when you do that, the web browser goes from one web page to another, but here it does not. The Silverlight application does not actually unload; it stays running, and just shows different content. Therefore, from the browser”s point of view, it is actually all on one web page. Silverlight plays some tricks with the navigation buttons to ensure that the web page does not unload as we navigate. Print Page Previous Next Advertisements ”;

Silverlight – Useful Resources

Silverlight – Useful Resources ”; Previous Next The following resources contain additional information on Silverlight. Please use them to get more in-depth knowledge on this. Useful Links on Silverlight Silverlight Wiki − Wikipedia Reference for Silverlight. Useful Books on Silverlight To enlist your site on this page, please drop an email to [email protected] Print Page Previous Next Advertisements ”;

Silverlight – Content Model

Silverlight – Content Model ”; Previous Next The buttons offer a form of content to the model content. Models crop up a lot in controls. The idea is simple. It will accept any content and not just text. If you want to create a truly exotic button, you could even place other content controls such as text boxes and buttons inside (and nest still elements inside these). It is doubtful that such an interface would make much sense, but it is possible. Let us have a look at a simple example with button, inside button other content controls. <UserControl x:Class = “ContentModel.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008” xmlns:mc = “http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable = “d” d:DesignHeight = “300” d:DesignWidth = “400”> <Grid x:Name = “LayoutRoot” Background = “White”> <Button Margin = “3” Height = “70” Width = “215”> <Grid Margin = “5”> <Polygon Points = “100,25 125,0 200,25 125,50” Fill = “LightSteelBlue” /> <Polygon Points = “100,25 75,0 0,25 75,50” Fill = “LightGray”/> </Grid> </Button> </Grid> </UserControl> When the above code is compiled and executed, you will see the following button. RangeControl The scrollbar and slider controls are closely related. They both allow the user to choose an input value from a particular range. Conventionally, these controls signify different things. Scrollbars are normally used to set the position into a scrotal area whereas, the slider is used to specify some value or setting. These are just conventions; the controls have similar behaviors and APIs. The range controls are simple to use. You specify the minimum and maximum values to indicate the range of values you would like the slider to represent. The Value property will vary as the use of drags varies. The hierarchical inheritance of Slider class is as follows − Given below are the commonly used properties of Slider. Given below are the most commonly used properties of Slider. Sr. No. Property & Description 1 Header Gets or sets the content for the control”s header. 2 HeaderProperty Identifies the Header dependency property. 3 HeaderTemplate Gets or sets the DataTemplate used to display the content of the control”s header. 4 HeaderTemplateProperty Identifies the HeaderTemplate dependency property. 5 IntermediateValue Gets or sets the value of the Slider while the user is interacting with it, before the value is snapped to either the tick or step value. The SnapsTo property specifies the value of slider. 6 IntermediateValueProperty Identifies the IntermediateValue dependency property. 7 IsDirectionReversed Gets or sets a value that indicates the direction of increasing value. 8 IsDirectionReversedProperty Identifies the IsDirectionReversed dependency property. 9 IsThumbToolTipEnabled Gets or sets a value that determines whether the slider value is shown in a tool tip for the Thumb component of the Slider. 10 IsThumbToolTipEnabledProperty Identifies the IsThumbToolTipEnabled dependency property. 11 Orientation Gets or sets the orientation of a Slider. 12 OrientationProperty Identifies the Orientation dependency property. 13 StepFrequency Gets or sets the value part of a value range that steps should be created for. 14 StepFrequencyProperty Identifies the StepFrequency dependency property. 15 ThumbToolTipValueConverter Gets or sets the converter logic that converts the range value of the Slider into tool tip content. 16 ThumbToolTipValueConverterProperty Identifies the ThumbToolTipValueConverter dependency property. 17 TickFrequency Gets or sets the increment of the value range that ticks should be created for. 18 TickFrequencyProperty Identifies the TickFrequency dependency property. 19 TickPlacement Gets or sets a value that indicates where to draw tick marks in relation to the track. 20 TickPlacementProperty Identifies the TickPlacement dependency property. Given below are the commonly used events in Slider class. Given below are the most commonly used events of Slider. Sr. No. Event & Description 1 ManipulationCompleted Occurs when a manipulation on the UIElement is complete. (Inherited from UIElement) 2 ManipulationDelta Occurs when the input device changes position during a manipulation. (Inherited from UIElement) 3 ManipulationInertiaStarting Occurs when the input device loses contact with the UIElement object during a manipulation and inertia begins. (Inherited from UIElement) 4 ManipulationStarted Occurs when an input device begins a manipulation on the UIElement. (Inherited from UIElement) 5 ManipulationStarting Occurs when the manipulation processor is first created. (Inherited from UIElement) 6 ValueChanged Occurs when the range value changes. (Inherited from RangeBase) Given below are the commonly used methods in Slider class. Given below are the most commonly used methods of Slider. Sr. No. Method & Description 1 OnManipulationCompleted Called before the ManipulationCompleted event occurs. (Inherited from Control) 2 OnManipulationDelta Called before the ManipulationDelta event occurs. (Inherited from Control) 3 OnManipulationInertiaStarting Called before the ManipulationInertiaStarting event occurs. (Inherited from Control) 4 OnManipulationStarted Called before the ManipulationStarted event occurs. (Inherited from Control) 5 OnManipulationStarting Called before the ManipulationStarting event occurs. (Inherited from Control) 6 OnMaximumChanged Called when the Maximum property changes. (Inherited from RangeBase) 7 OnMinimumChanged Called when the Minimum property changes. (Inherited from RangeBase) 8 OnValueChanged Fires the ValueChanged routed event. (Inherited from RangeBase) 9 SetBinding Attaches a binding to a FrameworkElement, using the provided binding object. (Inherited from FrameworkElement) 10 SetValue Sets the local value of a dependency property on a DependencyObject. (Inherited from DependencyObject) Example Let us have a look at a simple example in which a slider and an ellipse are added and the slider controls the width of the ellipse. <UserControl x:Class = “SliderExample.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008″ xmlns:mc = ” http://schemas.openxmlformats.org/markup-compatibility/2006″ mc:Ignorable = “d” d:DesignWidth = “640” d:DesignHeight = “480”> <Grid x:Name = “LayoutRoot”> <Grid.RowDefinitions> <RowDefinition Height = “Auto” /> <RowDefinition /> </Grid.RowDefinitions> <Slider Minimum = “1” Maximum = “400” Value = “1” ValueChanged = “Slider_ValueChanged” /> <Ellipse Grid.Row = “1” Fill = “Aqua” Width = “1” x:Name = “myEllipse” /> </Grid> </UserControl> Given below is the value changed event implementation is C#. using System.Windows; using System.Windows.Controls; namespace SliderExample { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void Slider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e) { if (myEllipse != null) { myEllipse.Width = e.NewValue; } } } } When the above code is compiled and executed, you will see the following output. As

Silverlight – Getting Started

Silverlight – Getting Started ”; Previous Next In this chapter, we will look at a working example of Silverlight. We need two things − First, we require a web page. Silverlight is intended for rich internet applications, It is designed to run inside of a web browser as part of a web page. The page needs to incorporate a suitable tag to load the Silverlight plug-in. It can also include the logic to detect whether Silverlight is installed, and can provide some fallback user interface, when it is absent. The second thing we need is the Silverlight content itself. This tutorial will focus on the .NET programming model for Silverlight. We will create a compiled Silverlight application containing a mixture of XAML, the mockup language we use to define Silverlight user interfaces, and .NET code written in C#. Create a Web-page The easiest way to start using Silverlight is to create an ordinary website with HTML pages and no server side code. Let us look at a very simple example. Step 1 − Open Visual Studio. Click the File menu, point to New and then click Project. Step 2 − A New Project dialog box will open. Under Templates, select Visual C# and then click Silverlight. In the right pane, choose Silverlight Application. Enter a project name and a location on your hard drive to save your project and then click OK to create the project. The Silverlight project itself is just going to build the Silverlight content, and that content is just one asset amongst many that are going to make up the whole web application. Click OK. Step 3 − Check the Host the Silverlight application checkbox. The default is an ASP.NET Web Application Project. Step 4 − MS-Visual Studio has created two projects, the Silverlight project and an ASP.NET web application. Now, we do need an ASP.NET web application. You can see this in the Solution Explorer window as shown below. Anything that can serve up the content via HTTP will do but this is Visual Studio, and it understands the ASP.NET web technology, so that is what it gives us. To demonstrate that Silverlight does not depend on any particular server-side technology, let us delete this .aspx file, leaving just the plain static HTML file. Step 5 − Right-click FirstExampleTestpage.aspx. From the list of options, click Delete. Step 6 − Set FirstExampleTestPage.html as the Start page. The MainPage.xaml file defines the user interface for Silverlight content. Either you can write XAML code directly or you can also use Toolbox to drag and drop different UI elements. Step 7 − Given below is a simple code in MainPage.xaml in which a Button and a TextBlock are defined inside the StackPanel. <UserControl x:Class = “FirstExample.MainPage” xmlns = “http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x = “http://schemas.microsoft.com/winfx/2006/xaml” xmlns:d = “http://schemas.microsoft.com/expression/blend/2008” xmlns:mc = “http://schemas.openxmlformats.org/markup-compatibility/2006” mc:Ignorable = “d” d:DesignHeight = “300” d:DesignWidth = “400”> <Grid x:Name = “LayoutRoot” Background = “White”> <StackPanel> <TextBlock x:Name = “TextMessage” Text = “Hello World!” Margin = “5”> </TextBlock> <Button x:Name = “ClickMe” Click = “ClickMe_Click” Content = “Click Me!” Margin = “5”> </Button> </StackPanel> </Grid> </UserControl> Step 8 − This example assumes that you have created an event-handling method named ClickMe_Click. Here is what it looks like in the MainPage.xaml.cs file. using System.Windows; using System.Windows.Controls; namespace FirstExample { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void ClickMe_Click(object sender, RoutedEventArgs e) { TextMessage.Text = “Congratulations! you have created your first Silverlight Applicatoin”; } } } Step 9 − A Silverlight application can be run on any installed browsers. Step 10 − When the above code is compiled and executed, you will see the following webpage. Step 11 − Now, when you click the Click Me button, it will update the text in the TextBlock as shown below. We recommend you to execute the above example by adding some more UI elements. Print Page Previous Next Advertisements ”;

Silverlight – ListBox

Silverlight – ListBox ”; Previous Next Listbox is a control that provides a list of items to the user for selection of an item. A user can select one or more items from a predefined list of items at a time. In a ListBox, multiple options are always visible to the user without any user interaction. A Listbox presents a scrollable list of items. If a user selects an item, the selected item changes appearance to indicate selection. It supports a more extensive form of content model and Button. A major difference between a button and a list box is that a button contains a single piece of content whereas a listbox allows every single item in the list. The hierarchical inheritance of ListBox class is as follows − Given below are the commonly used Properties of ListBox class. Given below are the most commonly used properties of ListBox. Sr. No. Property & Description 1 Background Gets or sets a brush that provides the background of the control. (Inherited from Control) 2 BorderThickness Gets or sets the border thickness of a control. (Inherited from Control) 3 FontFamily Gets or sets the font used to display text in the control. (Inherited from Control) 4 FontSize Gets or sets the size of the text in this control. (Inherited from Control) 5 FontStyle Gets or sets the style in which the text is rendered. (Inherited from Control) 6 FontWeight Gets or sets the thickness of the specified font. (Inherited from Control) 7 Foreground Gets or sets a brush that describes the foreground color. (Inherited from Control) 8 GroupStyle Gets a collection of GroupStyle objects that define the appearance of each level of groups. (Inherited from ItemsControl) 9 Height Gets or sets the suggested height of a FrameworkElement. (Inherited from FrameworkElement) 10 HorizontalAlignment Gets or sets the horizontal alignment characteristics that are applied to a FrameworkElement when it is composed in a layout parent, such as a panel or items control. (Inherited from FrameworkElement) 11 IsEnabled Gets or sets a value indicating whether the user can interact with the control. (Inherited from Control) 12 Item Gets the collection used to generate the content of the control. (Inherited from ItemsControl) 13 ItemsSource Gets or sets an object source used to generate the content of the ItemsControl. (Inherited from ItemsControl) 14 Margin Gets or sets the outer margin of a FrameworkElement. (Inherited from FrameworkElement) 15 Name Gets or sets the identifying name of the object. When a XAML processor creates the object tree from XAML markup, run-time code can refer to the XAML-declared object by this name. (Inherited from FrameworkElement) 16 Opacity Gets or sets the degree of the object”s opacity. (Inherited from UIElement) 17 SelectedIndex Gets or sets the index of the selected item. (Inherited from Selector) 18 SelectedItem Gets or sets the selected item. (Inherited from Selector) 19 SelectedValue Gets or sets the value of the selected item, obtained by using the SelectedValuePath. (Inherited from Selector) 20 Style Gets or sets an instance Style that is applied for this object during layout and rendering. (Inherited from FrameworkElement) 21 VerticalAlignment Gets or sets the vertical alignment characteristics that are applied to a FrameworkElement when it is composed in a parent object such as a panel or items control. (Inherited from FrameworkElement) 22 Width Gets or sets the width of a FrameworkElement. (Inherited from FrameworkElement) Given below are the most commonly used Events of ListBox. Given below are the most commonly used events of ListBox. Sr. No. Event & Description 1 DragEnter Occurs when the input system reports an underlying drag event with this element as the target. (Inherited from UIElement) 2 DragLeave Occurs when the input system reports an underlying drag event with this element as the origin. (Inherited from UIElement) 3 DragOver Occurs when the input system reports an underlying drag event with this element as the potential drop target. (Inherited from UIElement) 4 DragStarting Occurs when a drag operation is initiated. (Inherited from UIElement) 5 Drop Occurs when the input system reports an underlying drop event with this element as the drop target. (Inherited from UIElement) 6 DropCompleted Occurs when a drag-and-drop operation is ended. (Inherited from UIElement) 7 GotFocus Occurs when a UIElement receives focus. (Inherited from UIElement) 8 IsEnabledChanged Occurs when the IsEnabled property changes. (Inherited from Control) 9 KeyDown Occurs when a keyboard key is pressed while the UIElement has focus. (Inherited from UIElement) 10 KeyUp Occurs when a keyboard key is released while the UIElement has focus. (Inherited from UIElement) 11 LostFocus Occurs when a UIElement loses focus. (Inherited from UIElement) 12 SelectionChanged Occurs when the currently selected item changes. (Inherited from Selector) 13 SizeChanged Occurs when either the ActualHeight or the ActualWidth property changes value on a FrameworkElement. (Inherited from FrameworkElement) Given below are the most commonly used Methods of ListBox. Given below are the most commonly used methods of ListBox. Sr. No. Method & Description 1 Arrange Positions child objects and determines a size for a UIElement. Parent objects that implement custom layout for their child elements should call this method from their layout override implementations to form a recursive layout update. (Inherited from UIElement) 2 FindName Retrieves an object that has the specified identifier name. (Inherited from FrameworkElement) 3 Focus Attempts to set the focus on the control. (Inherited from Control) 4 GetValue Returns the current effective value of a dependency property from a DependencyObject. (Inherited from DependencyObject) 5 IndexFromContainer Returns the index to the item that has the specified, generated container. (Inherited from ItemsControl) 6 OnDragEnter Called before the DragEnter event occurs. (Inherited from Control) 7 OnDragLeave Called before the DragLeave event occurs. (Inherited from Control) 8 OnDragOver Called before the DragOver event occurs. (Inherited from Control) 9 OnDrop Called before the Drop event occurs. (Inherited from Control) 10 OnKeyDown Called before the KeyDown event occurs. (Inherited from Control) 11 OnKeyUp Called before the KeyUp event occurs. (Inherited from Control) 12 OnLostFocus Called before the LostFocus event occurs. (Inherited from Control)