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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:04:09+00:00 2026-05-13T22:04:09+00:00

I’ve noticed that the SL3 Validators automatically uses the properties from DisplayAttribute when creating

  • 0

I’ve noticed that the SL3 Validators automatically uses the properties from DisplayAttribute when creating validation messages. I’m interested in any suggestions on how to extract this information from a control’s binding using code. I’ve included an example:

ViewModel code:

[Display(Name="First Name")]
public string FirstName { get; set; }

I know can achieve this on a Control-by-Control basis doing something like the following (TextBox in this case):

BindingExpression dataExpression = _firstNameTextBox.GetBindingExpression(TextBox.TextProperty)
Type dataType = dataExpression.DataItem.GetType();
PropertyInfo propInfo = dataType.GetProperty(dataExpression.ParentBinding.Path.Path);
DisplayAttribute attr = propInfo.GetCustomAttributes(false).OfType<DisplayAttribute>().FirstOrDefault();
return (attr == null) ? dataExpression.ParentBinding.Path.Path : attr.Name;

I’m interested if there’s any way to do this generically, without needing to know the specific type of Control.

Thanks in advance for any thoughts!!

  • 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-13T22:04:10+00:00Added an answer on May 13, 2026 at 10:04 pm

    Good question. Unfortunately there’s really no way to generically do it though you can hard code a few properties and be pretty safe. For example, ContentControl.ContentProperty, TextBlock.TextProperty, TextBox.TextProperty, etc.

    DataForm in Silverlight does the same thing. I also re-implemented a simple helper method they use called GetPropertyByPath. It basically does what your code does except it can walk a multi-step property path. It can’t access indexed properties but neither can DataForm so it’s at least as good as that.

    From that point on, getting at the DisplayAttribute is just as you’ve shown.

    public static PropertyInfo GetPropertyByPath( object obj, string propertyPath )
    {
    
        ParameterValidation.ThrowIfNullOrWhitespace( propertyPath, "propertyPath" );
    
        if ( obj == null ) {
            return null;
        }   // if
    
        Type type = obj.GetType( );
    
        PropertyInfo propertyInfo = null;
        foreach ( var part in propertyPath.Split( new char[] { '.' } ) ) {
    
            // On subsequent iterations use the type of the property
            if ( propertyInfo != null ) {
                type = propertyInfo.PropertyType;
            }   // if
    
            // Get the property at this part
            propertyInfo = type.GetProperty( part );
    
            // Not found
            if ( propertyInfo == null ) {
                return null;
            }   // if
    
            // Can't navigate into indexer
            if ( propertyInfo.GetIndexParameters( ).Length > 0 ) {
                return null;
            }   // if
    
        }   // foreach
    
        return propertyInfo;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer by checking if elememt exist on the page before execute… May 14, 2026 at 7:29 pm
  • Editorial Team
    Editorial Team added an answer When you use a member function pointer, you need to… May 14, 2026 at 7:29 pm
  • Editorial Team
    Editorial Team added an answer Short answer: Because people thought that user agent detection (instead… May 14, 2026 at 7:29 pm

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.