Loading...

How to Use Custom Control in WPF?

How to Use Custom Control in WPF?


WPF applications empower to create custom controls that compel it very easy to create feature-rich and customizable controls. Custom controls are used when all the built-in controls offered by Microsoft are not accomplishing your standards or you don’t want to pay for third-party controls.

Here in this blog, we will create a WPF custom control that can have a better presentation. Let's see how to make the custom control and later we will use that control in our application.

Why We Use Custom Control?

  • If WPF’s in-built control does not fulfill your criteria then you have to create your own custom control.
  • If you want to use multiple in-built control and want to merge them in single control then use custom control.
  • If you want to add a new extra property in your project that is not in existing in-built controls then use custom control.
  • If you have to use reusable controls all over your project custom control is the perfect alternative.
  • If you want to share that control in another project then it’s better to use custom control.

Difference Between a Custom Control and User control


Custom Control

User Control

Custom control is a loosely coupled controlUser control is a tightly coupled control.
Custom Control derives from the Control base class.User control derives from the User Control base class.
Custom control defines UI in ResourceRespositary.User Control defines UI in XAML.
Custom control UI is Skin able.Child UI Skin is able in User Control.

Custom control uses a dynamic layout.

User control uses a static layout.
UI can be changed using Custom control.UI can be fixed in one and another project.
All toolbox support in Custom Control.All toolbox cannot be supported in User Control.
It can easily define a single Control.It can define a set of control.
Custom Control is more flexible.A user control cannot be flexible rather than custom control.
If you use custom control then it requires the depth knowledge about the Silverlight UI model.
If you use User control then does not require depth knowledge about the Silverlight UI model.

Now Let’s look at Steps to Create Custom Control in WPF 


Follow these steps, to create a custom control in your project.

Step 1: First create a new project for Custom control and provide the project name as CustomControlDemo. (You can give any suitable name of your choice)

Step 2: Once the project has been created, then right-click on solution explorer and select the ADD -> New Item.

Step 3: Now select the Custom Control (WPF) and give the name as CustomControl1.cs (You can give any suitable name of your choice)

Step 4: Now you can see the two new files in your project.


Open Generic.xaml under Themes

We will declare style for our Custom control in Generic.xaml

<ResourceDictionary

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:local="clr-namespace:WpfCustomControlLibrary1">

    <Style TargetType="{x:Type local:CustomControl1}">

        <Setter Property="Template">

            <Setter.Value>

                <ControlTemplate TargetType="{x:Type local:CustomControl1}">

                    <Border Background="{TemplateBinding Background}"

BorderBrush="{TemplateBinding BorderBrush}"

BorderThickness="{TemplateBinding BorderThickness}">

 

</Border>

</ControlTemplate>

</Setter.Value>

</Setter>

</Style>

</ResourceDictionary>

Now we have to define a custom control in CustomControl1.cs

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;

 

namespace WpfCustomControlLibrary1

{

    public class CustomControl1 : Control

    {

        static CustomControl1()

        {

            DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl1), new FrameworkPropertyMetadata(typeof(CustomControl1)));

        }

    }

}

Step 5: Now you have to add the namespace in your MainPage.xaml file to use this control in MainPage

NameSpace:

xmlns:control=”clr-namespace:CustomControl1”


Step 6: Now you can implement the task in your project.

Choose the right base class for custom control:

The followings are the overview for base classes

  • UIElement: This base class is the most lightweight base class. It can support light-layout, focus, events, and input.
  • FrameworkElement: This class is derived from UiElement class and this class support Styling, Tooltip, and Contextmenu.
  • Control: This is the most common base class for all controls. This class supports the template and adds some basic properties like Foreground, Background, etc.
  • HeaderedContentControl: This class is useful for control the content and header property. This class is used for controls with a header like an Expander, Tab control, and Group box.
  • ItemsControl: The class is useful to add additional items collection. This class is most useful for the dynamic binds the list of data without select the item.
  • Selector: In an Item control base class, the item can be select and define the index. This base class useful in ListView, Combobox, List Box, Tab Control.
  • Range Base: This base class is useful for controls the display of a value range like Slidebar, progressBar. This class is property use Minimum and Maximum.

Let’s use created control in our UI:

<Window x:Class="WpfApp2.MainWindow"

        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"

        xmlns:Control="clr-namespace:WpfApp2"

        xmlns:local="clr-namespace:WpfApp2"

        mc:Ignorable="d"

        Title="MainWindow" Height="450" Width="800">

    <Grid Background="Coral">

        <Grid.RowDefinitions>

            <RowDefinition Height="Auto"/>

            <RowDefinition Height="Auto"/>

            <RowDefinition Height="Auto"/>

            <RowDefinition Height="Auto"/>

        </Grid.RowDefinitions>

 

        <Label Content="Log In" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Center"/>

        <Label Content="User Name" FontSize="14" Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="266,10,456,-34"/>

        <TextBox Height="20" Width="100" Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="440,27,252,-33" />

 

        <Label Content="Password" Grid.Row="2" FontSize="14" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="266,65,466,-86"/>

        <TextBox Height="20" Width="100" Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="440,81,252,-85" />

        <Control:CustomControl2 Grid.Row="3" FontSize="18" Content = "Submit" Background="Gray" Foreground="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="20"  Click="CustomControl_Click" Margin="330,155,342,-154"/>

    </Grid>

</Window>


CustomControl2.cs

In this file, we will create a control for Button. So, let’s code for it.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;

 

namespace WpfApp2

{

    public class CustomControl2 : Button

    {

        static CustomControl2()

        {

            DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl2), new FrameworkPropertyMetadata(typeof(CustomControl2)));

        }

    }

}


MainWindow.cs

  • This file implements the event implementation.
  • This example displays the message using a message box.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;

 

namespace WpfApp2

{

    /// <summary>

    /// Interaction logic for MainWindow.xaml

    /// </summary>

    public partial class MainWindow : Window

    {

 

        public MainWindow()

        {

            InitializeComponent();

        }

 

        private void CustomControl_Click(object sender, RoutedEventArgs e)

        {

            

            MessageBoxResult result = MessageBox.Show("Please enter the User Name and password");

        }

    }

}


How to Use Custom Control in WPF?

Output Screen

Conclusion

Creating Custom control does require tons of effort so, if you trying to find just look and feel, you will get a workaround to the present using a custom template or assuming from other existing controls. Also remember, a custom control is Themable, Template, and also reinforces inheritance, so you ought to always consider writing your control gracefully and striking every possible characteristic that your control might encounter.



Ajay Patel – Technical Director, iFour Technolab Pvt. Ltd.A Seasoned technocrat with years of experience building technical solutions for various industries using Microsoft technologies. Wish sharp understanding and technical acumen, have delivered hundreds of Web, Cloud, Desktop, and Mobile solutions and is heading the technical department at WPF Application Development Company – iFour Technolab Pvt. Ltd.

Featured 1327421542842429459

Post a Comment

emo-but-icon

Home item

Like Us

Popular Posts

Labels

1960s 1970s 1980s 1990s 2000s Academic academics Accounting Achievements ACT Action Activity Affiliate Android Animation Anti-Bullying app applications Apps Art Artificial Intelligence ASMR Assignment Astrology Audio Author Authors Baby Banned Bath Beginner Believe It or Not Biographies Bitcoin Blog Book BookClub Books Brain Business campus tours campus visits Career careers Children Christmas Classic Rock Cloud Collectible College college decisions college fairs college majors college prep college search college visits Coloring Comedy Comic Common App communication compare Computer Content Cooking course selection Creativity Crime Culture Data deadlines decision making Design Desktop Development Digital Disney Drawing E-Commerce Easter Eggs eBooks Editor Education Email English enrollment Entertainment Entrepreneurship eReader ERP Essay essays extracurriculars Fantasy Fashion Featured Fiction Finance Fire First Grade first-gen fit Fitness Freebie Fun Gadgets Games Gaming General Knowledge Gift Girl GPA Grade-4 Grade-6 Grade-7 Grade-8 Grammar Graphic GRE Halloween Health High School History Home Honesty Horror How-To HTML5 Human Resources Icons Idea Ideas Imagination Inspiration Instagram Internet Interview interviews Inventory Investing iPhone Java Job Keyboard Kids Kindergarten Kindle Landmark Events Laws Leadership Learn letters of recommendation Library Literature Logo Logos Love Machine Learning Man Marketing Marriage Math Meditation mental health Microservices Middle-School Mind mistakes Mobile Modern Life Money Moral Movies Music Music Trivia Mystery Myths Nerdy Network networking News Non-Fiction Office organization Parenting Payment PDF Philosophy Photography Photoshop PHP Physics planning Platform Plays Politics Pop Culture Pregnancy preparation Printable Productivity Programming Prompts Psychology Quiz Quotes Reading recommendations Records Recruiter Reddit Relationship resilience resume Retro Review Romance Router Sales SAT School Sci-Fi Science Second Grade Security Self Improvement Seo Series Shakespeare Short Story Sight Words Social Media Social Skills Software Speed Spirituality Sports SQL standardized tests step-by-step Strategy stress Student study tips Summer support Suspense Technology Teens Test test prep Testing Textbooks Themes Thesis Thriller TikTok time management Tips Toddler Tools Trading Travel Trivia Tutorials TV Twitter Typing USB Vampire Video Video Games Viral Vocabulary VPN War Website Weird Facts wellness WiFi Windows 8 Woman Wordlist WordPress Work World Writer Writing writing tips Yoga Young Adults YouTube Zombie