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 6059089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:40:19+00:00 2026-05-23T08:40:19+00:00

The application is developed with C# and WPF. I have a data binding to

  • 0

The application is developed with C# and WPF.
I have a data binding to a static property of a non static class.
When the application is started, the binding does well, but if i change the bool of the binding, the view is not been updated.
How can i update the binding of this static property ?
NotifyChanged-Events don’t affected.

The class:

public class ViewTemplateManager : NotifyBase
{
    public static bool CanResizeColumns { get; set; }

    static ViewTemplateManager()
    {
        CanResizeColumns = true;
    }

The View:

<Thumb x:Name="PART_HeaderGripper" IsEnabled="{Binding Source={x:Static Member=viewManager:ViewTemplateManager.CanResizeColumns}}"
  • 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-23T08:40:19+00:00Added an answer on May 23, 2026 at 8:40 am

    The only way to do this is if you have a reference to the associated BindingExpression.

    Assuming you have a reference to the Thumb in your code, it would look like:

    var bindingExpression = thumb.GetBindingExpression(Thumb.IsEnabledProperty);
    if (bindingExpression != null)
        bindingExpression.UpdateTarget();
    

    Your best bet would be to use a singleton pattern, like so:

    public class ViewTemplateManager : NotifyBase
    {
        public bool CanResizeColumns { get; set; }
    
        public static ViewTemplateManager Instance { get; private set; }
    
        static ViewTemplateManager()
        {
            Instance = new ViewTemplateManager();
        }
    
        private ViewTemplateManager()
        {
            CanResizeColumns = true;
        }
    }
    

    Then bind like so:

    <Thumb x:Name="PART_HeaderGripper" IsEnabled="{Binding Source={x:Static viewManager:ViewTemplateManager.Instance}, Path=CanResizeColumns}}"
    

    Then you simply need to raise the INotifyPropertyChanged.PropertyChanged event when you change CanResizeColumns.

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

Sidebar

Related Questions

Hie Everyone I have 1st time developed SSRS in my WPF application.. but there
I have a web application developed in ASP.NET 2.0, deployed in a data center.
I have a WPF Keyboard Application, it is developed in such a way that
For my WPF application I have developed a virtual keyboard. It runs fine on
I have developed a GUI for a random application using WPF. I have a
I have a WPF application developed against the MVVM framework in which the ViewModel
Once I have developed Wpf application, I have created setup and distributed to users.
I have developed a WPF application and set up a deployment project. The installer
I have a WPF application which saves its data to XML files in a
We have developed an application in C# .NET WPF Office which we are about

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.