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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:30:41+00:00 2026-05-30T12:30:41+00:00

I created a user control with one DP. Now am using that UC in

  • 0

I created a user control with one DP.
Now am using that UC in my page with 5 times and my question is, DP is a static property so it will create only one instance.Now how the value will be hold for 5 different controls?

  • 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-30T12:30:43+00:00Added an answer on May 30, 2026 at 12:30 pm

    Dependency properties are created per type and can be customized if required. So if your screen has, let say, 20 buttons yours storage space for properties occupied is as good as for one button.

    DependencyObject maintains two HashTable members:

    • one static

    private static Hashtable _staticProperties = new Hashtable();

    • another non-static.

    private Hashtable properties = new Hashtable();

    Static member stores the default values of DP (only one for all types) and non-static member stores values those have changed.

    When you call the SetValue method of your dp you are basically adding an item in your non-static HashTable. And when GetValue is called DependencyObject first checks if non-static HashTable has the key; if found then returns the value else it returns the value from static member (which is the default value)

    So,

    • DP does not hold any value till the time it’s changed.

    • DP are static so that your app can observe their values; that’s why you register a DP instead of instantiate.

    • DP holds value in a HashTable declared in DependencyObject class, you need to pass the type of the owner while registering one.

    You can also see it here on my blog: How Dependency Property holds value

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

Sidebar

Related Questions

I've created a user control (in vb.net code) that contains two dock panels, one
I've created a custom user control that has several properties. One specifies which database
I have created a user control (CheckedDirTree) that exposes a CheckedFolder property which in
What gives? My previously created user control is visible, but the newly created one
I just created a user control. This control also makes use of my static
i'm trying to learn about user controls. I created a user control that has
I am using ASP.NET to create a page with a GridView that is very
I created user control for textbox with autocompleteextender, and its working fine, but now
First off, forgive my English. I created one user control with Textbox and AutoCompleteExtender
I'm new to usercontrols, having only created one so far, so bear with me.

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.