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

I have a WPF application which saves its data to XML files in a
I have a web application developed with ASP.net and C# that is running on
I have an ASP.NET application developed on my Vista box (IIS7). It works fine
I have a very nice MVC Beta application developed using VS2008 on a win2008
I have developed application for drawing some shapes (lines mostly) , now i need
I'm going to have to build a custom control for a WinForms application. But
Background: I developed a small .NET 3.5 WPF application that connects to an Oracle
I have developed a solution in Visual Studio 2008 C# WPF! I'm using a
In my C++ application (developed with Visual Studio 2003) and Qt4 , I'd like
I'm working on an application developed by another mob and am confounded by the

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.