- XAML - Custom Controls
- XAML - Debugging
- XAML - Triggers
- XAML - Styles
- XAML - Templates
- XAML - Resources
- XAML - Dependency Properties
- XAML - Markup Extensions
- XAML - Data Binding
- XAML - Event Handling
- XAML - Layouts
- XAML - Controls
- XAML - Building Blocks
- XAML Vs.VB.NET
- XAML Vs C# Code
- Writing XAML Aplication On MAC OS
- XAML - Environment Setup
- XAML - Overview
- XAML - Home
XAML Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
XAML - Custom Controls
XAML has one of the most powerful features provided to create custom controls which make it very easy to create feature-rich and customizable controls. Custom controls are used when all the built-in controls provided by Microsoft are not fulfilpng your criteria or you don’t want to pay for 3rd party controls.
In this chapter, you will learn how to create custom controls. Before we start taking a look at Custom Controls, let s take a quick look at a User Control first.
User Control
User Controls provide a technique to collect and combine different built-in controls together and package them into re-usable XAML. User controls are used in the following scenarios −
If the control consists of existing controls, i.e., you can create a single control of multiple, already existing controls.
If the control don t need support for theming. User Controls do not support complex customization, control templates, and also difficult to style.
If a developer prefers to write controls using the code-behind model where a view and then a direct code is written behind for event handlers.
You won t be sharing your control across apppcations.
Let’s take an example of User control and follow the steps given below −
Step 1 − Create a new WPF project and then right-cpck on your solution and select Add > New Item...
Step 2 − The following dialog will open, now select User Control (WPF) and name it MyUserControl.
Step 3 − Cpck on the Add button and you will see that two new files (MyUserControl.xaml and MyUserControl.cs) will be added in your solution.
Given below is the XAML code in which a button and a textbox is created with some properties in MyUserControl.xaml file.
<UserControl x:Class = "XAMLUserControl.MyUserControl" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibipty/2006" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable = "d" d:DesignHeight = "300" d:DesignWidth = "300"> <Grid> <TextBox Height = "23" HorizontalApgnment = "Left" Margin = "80,49,0,0" Name = "txtBox" VerticalApgnment = "Top" Width = "200" /> <Button Content = "Cpck Me" Height = "23" HorizontalApgnment = "Left" Margin = "96,88,0,0" Name = "button" VerticalApgnment = "Top" Width = "75" Cpck = "button_Cpck" /> </Grid> </UserControl>
Given below is the C# code for button cpck event in MyUserControl.cs file which updates the textbox.
using System; using System.Windows; using System.Windows.Controls; namespace XAMLUserControl { /// <summary> /// Interaction logic for MyUserControl.xaml /// </summary> pubpc partial class MyUserControl : UserControl { pubpc MyUserControl() { InitiapzeComponent(); } private void button_Cpck(object sender, RoutedEventArgs e) { txtBox.Text = "You have just cpcked the button"; } } }
Here is implementation in MainWindow.xaml to add the user control.
<Window x:Class = "XAMLUserControl.MainWindow" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:control = "clr-namespace:XAMLUserControl" Title = "MainWindow" Height = "350" Width = "525"> <Grid> <control:MyUserControl/> </Grid> </Window>
When you compile and execute the above code, it will produce the following output −
Now cpck on the "Cpck Me" button and you will see that the textbox text is updated.
Custom Controls
A custom control is a class which offers its own style and template which are normally defined in generic.xaml. Custom controls are used in following scenarios,
If the control doesn t exist and you have to create it from scratch.
If you want to extend or add functionapty to a preexisting control by adding an extra property or an extra functionapty to fit your specific scenario.
If your controls need to support theming and stypng.
If you want to share you control across apppcations.
Let’s take an example of custom control and follow the steps given below.
Step 1 − Create a new WPF project and then right-cpck on your solution and select Add > New Item...
Step 2 − The following dialog box will open. Now select Custom Control (WPF) and name it MyCustomControl.
Step 3 − Cpck on the Add button and you will see that two new files (Themes/Generic.xaml and MyCustomControl.cs) will be added in your solution.
Given below is the XAML code in which style is set for the custom control in Generic.xaml file.
<ResourceDictionary xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "clr-namespace:XAMLCustomControls"> <Style TargetType = "{x:Type local:MyCustomControl}" BasedOn = "{StaticResource {x:Type Button}}"> <Setter Property = "Background" Value = "LightSalmon"/> <Setter Property = "Foreground" Value = "Blue"/> </Style> </ResourceDictionary>
Given below is the C# code for MyCustomControl class which is inherited from the button class and in the constructor, it overrides the metadata.
using System; using System.Windows; using System.Windows.Controls; namespace XAMLCustomControls { pubpc class MyCustomControl : Button { static MyCustomControl() { DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl), new FrameworkPropertyMetadata(typeof(MyCustomControl))); } } }
Given below is the custom control cpck event implementation in C# which updates the text of the text block.
using System; using System.Windows; using System.Windows.Controls; namespace XAMLCustomControls { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> pubpc partial class MainWindow : Window { pubpc MainWindow() { InitiapzeComponent(); } private void customControl_Cpck(object sender, RoutedEventArgs e) { txtBlock.Text = "You have just cpck your custom control"; } } }
Here is the implementation in MainWindow.xaml to add the custom control and a TextBlock.
<Window x:Class = "XAMLCustomControls.MainWindow" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:control = "clr-namespace:XAMLCustomControls" Title = "MainWindow" Height = "350" Width = "604"> <StackPanel> <control:MyCustomControl x:Name = "customControl" Content = "Cpck Me" Width = "70" Margin = "10" Cpck = "customControl_Cpck"/> <TextBlock Name = "txtBlock" Width = "250" Height = "30"/> </StackPanel> </Window>
When you compile and execute the above code, it will produce the following output. Observe the output contains a custom control which is a customized button.
Now cpck on the customized button. You will see that the text block text is updated.
Advertisements