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

  • Home
  • SEARCH
  • 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 9230257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:46:48+00:00 2026-06-18T05:46:48+00:00

Is there a way to bind to a dependency property in C# (like XAML

  • 0

Is there a way to bind to a dependency property in C# (like XAML does)?

I know I can do change notification, but I was hoping for a way to do a “Two Way” binding. (So that changing my value changes the dependency property.)

Example:

In my User Control View

public static readonly DependencyProperty IsRequiredProperty =
    DependencyProperty.Register("IsRequired", typeof(bool), 
        typeof(MyUserControl), new FrameworkPropertyMetadata(default(bool)));

public bool IsRequired
{
    get { return (bool)GetValue(IsRequiredProperty); }
    set { SetValue(IsRequiredProperty, value); }
}

In My View Model:

 // This is the one I want bound to the dependency property.
 bool IsRequired { //INotifyPropertyChanged getter and setter}

 public void SomeCommandExec(Object obj)
 {
     // Update the dependency property by doing this:
     IsEnabled = False;
 }
  • 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-06-18T05:46:50+00:00Added an answer on June 18, 2026 at 5:46 am

    You can do this in C# – you have to build a Binding manually:

    // You need these instances
    var yourViewModel = GetTheViewModel();
    var yourView = GetYourView();
    
    Binding binding = new Binding("IsRequired");
    binding.Source = yourViewModel;
    binding.Mode = BindingMode.TwoWay;
    yourView.SetBinding(YourViewType.IsRequiredProperty, binding);
    

    For details, see How To: Create a Binding in Code.

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

Sidebar

Related Questions

I wanted to know if there's a way I can bind an Asp.net Ajax
Is there any way to bind two windows from seprate processes together using Python/Pygame?
Is there a way to fire a two way data bind when the key
Is there a simple way to bind the textbox of a div to change
I'm using a PasswordBox which exposes a dependency property such that I can bind
I bind a collection ObservableCollection<Foo> to a dependency property on my controller, but I
Is there any way bind textboxes to the row of a dataset that is
Is there a way to bind properties from one instance of a class to
Is there a super quick way to bind to the inverse of a boolean
There are plenty of ways to bind a SOURCE method to target property, either

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.