Click here to Skip to main content
15,881,898 members
Articles / Silverlight / Silverlight5
Tip/Trick

Add checkbox inside combobox in Silverlight

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
28 Nov 2012CPOL1 min read 59.3K   1.4K   9   10
Add checkbox inside combobox in Silverlight.

Introduction

This article helps you to create a combobox with a checkboxlist in Silverlight. In this article I use DependencyProperty, INotifyPropertyChanged, and ItemTemplate for checkbox check/uncheck.

The control looks like:

Checkbox inside Combobox

Background 

In this article I used DependencyProperty for changing the checkbox value in the ComboBox control. A DependencyProperty is a static method that changes the value of an instanced object property. Also I used INotifyPropertyChanged for changing property value in the custom user control.

Anyone can use this control in his/her Silverlight project. Also ItemTemplate is particularly useful when you bind the ItemsSource to data, it binds to a checkbox in a combobox. In this example, when the user checks the checkbox, time is updated in the combobox selected value and also when unchecking any checkbox, the time reflects in the selected value.

In this example, I create a Model class which contains NotifyProperty and returns the list for binding it in the control.

In this example I also use ItemTemplate for displaying a checkbox inside a combobox. When page loads that time assigns the result to an ItemsSource. Also I add a PropertyChanged event for notifying when checkbox is checked or unchecked. When the PropertyChanged event is called, the time binds the selected checkbox value to the combobox selected value.

My MainPage.xaml looks like:

XML
<grid removed="White" x:name="LayoutRoot">
    <stackpanel margin="10">
        <combobox horizontalalignment="Left" width="200" 
              height="25" name="cmbDepartment">
            <combobox.itemtemplate>
                <datatemplate>
                    <checkbox ischecked="{Binding IsChecked,Mode=TwoWay}" 
                       content="{Binding DepartmentName}">
                </checkbox></datatemplate>
            </combobox.itemtemplate>
        </combobox>
        <textblock margin="5,-20,0,0" horizontalalignment="Left" 
           width="Auto" height="20" x:name="tbDepartment">
    </textblock></stackpanel>
</grid>

My MainPage.xaml.cs looks like:

C#
public partial class MainPage : UserControl
{

    public MainPage()
    {
        InitializeComponent();
        ObservableCollection<department> objDeploymentList = new ObservableCollection<department>();
        cmbDepartment.SelectionChanged += new SelectionChangedEventHandler(cmbDepartment_SelectionChanged);
        DepartmentList obj = new DepartmentList();
        objDeploymentList = obj.LoadDepartmentList();
        cmbDepartment.ItemsSource = objDeploymentList;
        foreach (Department item in objDeploymentList)
        {
            item.PropertyChanged += new PropertyChangedEventHandler(item_PropertyChanged);
        }
        if (cmbDepartment.ItemsSource != null)
        {
            SetString();
        }
    }

    void cmbDepartment_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        cmbDepartment.SelectedItem = null;
    }

    void item_PropertyChanged(object sender, PropertyChangedEventArgs e)
    {
        if (e.PropertyName == "IsChecked")
        {
            SetString();
        }
    }
    //Function for Bind Selected Value in Combobox
    public void SetString()
    {
        string str = "";
        foreach (Department item in cmbDepartment.ItemsSource)
        {
            if (item.IsChecked)
            {
                str = str + item.DepartmentName + ",";
            }
        }
        if (str != "")
            str = str.Substring(0, str.Length - 1);
        tbDepartment.Text = str;
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to bind checkbox dynamically in this? Pin
Gopi Soni11-Feb-16 10:48
Gopi Soni11-Feb-16 10:48 
AnswerRe: How to bind checkbox dynamically in this? Pin
Savalia Manoj M16-Feb-16 21:52
Savalia Manoj M16-Feb-16 21:52 
SuggestionTextblock - IsHitTestVisible Pin
TheRealSteveJudge4-Dec-14 4:01
TheRealSteveJudge4-Dec-14 4:01 
QuestionPlease help me! Pin
Nguyencongthai8-Jun-14 16:58
Nguyencongthai8-Jun-14 16:58 
QuestionPlease help me! Pin
Thái Sa Lem29-May-14 7:28
Thái Sa Lem29-May-14 7:28 
AnswerRe: Please help me! Pin
Savalia Manoj M1-Jun-14 23:16
Savalia Manoj M1-Jun-14 23:16 
hello,
Thanks for use my sample. Please explain detail your problem with code.
QuestionHow to make this as a control? Pin
zhonghuafy24-Dec-12 18:46
zhonghuafy24-Dec-12 18:46 
AnswerRe: How to make this as a control? Pin
Savalia Manoj M25-Dec-12 17:04
Savalia Manoj M25-Dec-12 17:04 
QuestionIntegration in Lightswitch application? Pin
Member 953543222-Oct-12 2:57
Member 953543222-Oct-12 2:57 
AnswerRe: Integration in Lightswitch application? Pin
Savalia Manoj M22-Oct-12 18:00
Savalia Manoj M22-Oct-12 18:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.