New to Telerik UI for WPF? Download free 30-day trial

Getting Started with XAML

Before proceed reading the Telerik UI for WPF documentation we recommend that you check the fundamental concepts of Windows Presentation Foundation (WPF). This article contains basic information about the WPF framework and tells you where to find relevant information about its features.

Overview

Windows Presentation Foundation provides a unified programming model for building Windows smart client user experiences that incorporate UI, media, and documents.

For more information, see the WPF Overview MSDN article.

The following sections describe the most basic features of the WPF framework.

XAML (Extensible Application Markup Language)

Extensible Application Markup Language (XAML) is an XML-based markup language that is used to construct the visual appearance of an application. XAML to WPF what HTML is to web. You can find details on XAML concepts and how to use the language in your applications in the XAML Overview MSDN article. See also the WPF Architecture MSDN article.

Assemblies and Namespaces in .NET

  • Assemblies: An assembly is a collection of types and resources that are built to work together as a logical unit of functionality. All types in the .NET Framework must exist in assemblies; the common language runtime (CLR) does not support types outside assemblies. For more information, see the Assemblies in the Common Language Runtime MSDN article.

  • Namespaces: The namespace keyword is used to declare a scope. Namespaces are a second organizational method that complements assemblies. Namespaces are a way of grouping type names reducing the chance of name collisions. A namespace can contain other namespaces and types. The full name of a type includes the combination of namespaces that contain that type. For more information, see the Namespaces (C# Programming Guide) MSDN article.

Events

WPF introduces routed events that can invoke handlers that exist on various listeners in the element tree of an application. For more information, see the Events MSDN article.

Attached Properties

An attached property is used as a type of global property that can be set on any object. For more information, see the Attached Properties Overview MSDN article.

Collections and Data Structures

Detailed information on this topic can be found in the Collections and Data Structures MSDN article.

Data Binding

Data binding is the process that establishes a connection between the application UI and the business logic. It provides a simple and consistent way for applications to present and interact with data. Elements can be bound to data from a variety of data sources in the form of common language runtime objects and XML. For more information, see the Data Binding MSDN article.

Binding Collections

A binding source object can be treated as a data collection of objects that are often grouped together (such as the result of a query to a database). You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes an event, that should be raised whenever the underlying collection changes. WPF provides a built-in implementation of a data collection that implements the INotifyCollectionChanged interface — the ObservableCollection<T> class.

Data Conversion

With the help of IValueConverter, you can apply custom logic to a binding. The converter allows you to convert the value of the bound property to another value or to even another type. For more information, see the IValueConverter Interface MSDN article.

Commanding

The WPF framework supports a commanding input mechanism whose purpose is to separate the logic that executes the command from the object that invokes the command. The most common use of commands is the avoid using events and code-behind. Instead, the command and its logic are defined in the view model and then bound to the visual element in the UI. For more information, see the Commanding Overview MSDN article.

Styles and Templates

WPF styling and templating refer to a suite of features that allows an application to create visually compelling applications in a standardized way. For more information, see the Styles and Templates MSDN article.

Data Templates

WPF has built-in support for customizing data presentation. Its data templating model provides great flexibility. For more information, see the Data Templating Overview MSDN article.

Style Selectors

The style selector provides a way to apply different styles based on custom logic. For more information, see the StyleSelector Class MSDN article.

Data Template Selectors

The data template selector enables you to choose different DataTemplate based on the data object and the data-bound element. For more information, see the DataTemplateSelector Class MSDN article.

See Also

In this article