Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 225959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:27:53+00:00 2026-05-11T19:27:53+00:00

While it is trivial to store a checkbox’s checked state in a variable using

  • 0

While it is trivial to store a checkbox’s checked state in a variable using the checkbox’s Click event, how would I do it via databinding? All the examples I have found have the UI updated from some datasource, or bind one control to another; I want to update a member variable when the checkbox is clicked.

TIA for any pointers…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T19:27:53+00:00Added an answer on May 11, 2026 at 7:27 pm

    You need a dependency property for this:

    public BindingList<User> Users
    {
        get { return (BindingList<User>)GetValue(UsersProperty); }
        set { SetValue(UsersProperty, value); }
    }
    
    public static readonly DependencyProperty UsersProperty =
        DependencyProperty.Register("Users", typeof(BindingList<User>), 
          typeof(OptionsDialog));
    

    Once that is done, you bind the checkbox to the dependency property:

    <CheckBox x:Name="myCheckBox"
              IsChecked="{Binding ElementName=window1, Path=CheckBoxIsChecked}" />
    

    For that to work you have to name your Window or UserControl in its openning tag, and use that name in the ElementName parameter.

    With this code, whenever you change the property on the code side, you will change the textbox. Also, whenever you check/uncheck the textbox, the Dependency Property will change too.

    EDIT:

    An easy way to create a dependency property is typing the snippet propdp, which will give you the general code for Dependency Properties.

    All the code:

    XAML:

    <Window x:Class="StackOverflowTests.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window1" x:Name="window1" Height="300" Width="300">
        <Grid>
            <StackPanel Orientation="Vertical">
                <CheckBox Margin="10"
                          x:Name="myCheckBox"
                          IsChecked="{Binding ElementName=window1, Path=IsCheckBoxChecked}">
                    Bound CheckBox
                </CheckBox>
                <Label Content="{Binding ElementName=window1, Path=IsCheckBoxChecked}"
                       ContentStringFormat="Is checkbox checked? {0}" />
            </StackPanel>
        </Grid>
    </Window>
    

    C#:

    using System.Windows;
    
    namespace StackOverflowTests
    {
        /// <summary>
        /// Interaction logic for Window1.xaml
        /// </summary>
        public partial class Window1 : Window
        {
            public bool IsCheckBoxChecked
            {
               get { return (bool)GetValue(IsCheckBoxCheckedProperty); }
               set { SetValue(IsCheckBoxCheckedProperty, value); }
            }
    
            // Using a DependencyProperty as the backing store for 
             //IsCheckBoxChecked.  This enables animation, styling, binding, etc...
            public static readonly DependencyProperty IsCheckBoxCheckedProperty =
                DependencyProperty.Register("IsCheckBoxChecked", typeof(bool), 
                typeof(Window1), new UIPropertyMetadata(false));
    
            public Window1()
            {             
                InitializeComponent();
            }
        }
    }
    

    Notice how the only code behind is the Dependency Property. Both the label and the checkbox are bound to it. If the checkbox changes, the label changes too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 118k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer are you using Caching on the control? If the control's… May 11, 2026 at 11:36 pm
  • Editorial Team
    Editorial Team added an answer Your HTML is a tad strange. For example, why does… May 11, 2026 at 11:36 pm
  • Editorial Team
    Editorial Team added an answer One idea would be during the row databinding, check the… May 11, 2026 at 11:36 pm

Related Questions

While it is trivial to store a checkbox's checked state in a variable using
Why would someone want to use a linked-list over an array? Coding a linked-list
I'm implementing home brew ACL system in web app and it gives me hard
Assume you have five products, and all of them use one or more of
I'd like to implement a way to display a list of stored addresses sorted

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.