shlogg · Early preview
Mohammed Chami @amuza2

Extended WPF Toolkit Controls For .NET Developers

Boost your WPF app with Extended WPF Toolkit's 10+ advanced controls! Install via NuGet and add namespace in XAML for WatermarkTextBox, DateTimePicker, NumericUpDown & more!

The Extended WPF Toolkit is a collection of WPF controls that include advanced input controls, layouts, and themes. I listed below few controls that are commonly used:

  
  
  1. Installing the Extended WPF Toolkit

First, install the NuGet package:

Install-Package Xceed.Wpf.Toolkit

    
    

    
    




Then, add the namespace in your XAML:

xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"

    
    

    
    




  
  
  Commonly Used Controls and Examples

  
  
  2. WatermarkTextBox (TextBox with Hint)

A WatermarkTextBox provides placeholder text inside a textbox.

<xctk:Wate...