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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:05:44+00:00 2026-05-11T11:05:44+00:00

Lets say I have a custom data type that looks something like this: public

  • 0

Lets say I have a custom data type that looks something like this:

public class MyDataType {   public string SimpleProp1;   public string SimpleProp2;   public List<SomeType> ComplexProp; } 

now I hava a data bound control (i.e. ItemsControl or DataGrid), that is created dynamically. How would the binding defined in xaml code look like to acces a subproperty of the complex property? I thought it should look something like this:

<TextBox Text='{Binding simpleSubProp, path=ComplexProp[0]}' /> 

or

<TextBox Text='{Binding path=ComplexProp[0].simpleSubProp}' /> 

but both of those give me xml parse errors. How should it look correctly? Is it even possible to refer to a specific item of a collection property in souch a way? If it is not, what other options do I have?

EDIT, The scenario doesn’t seem to be clear enough:

I have an

IEnumberable<MyDataType> 

that is bound to an ItemsControl, inside the DataTemplate I have multiple TextBoxes that need to refer to subproperties of an object in the List of the complex property.

  • 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. 2026-05-11T11:05:45+00:00Added an answer on May 11, 2026 at 11:05 am

    Looks like poperty path indexers are broken in Silverlight Indexers in property paths are broken. The way to get around it is as suggested in the post and to use an IValueConverter.

    XAML

    <UserControl x:Class='Silverlight.Mine.Page'   xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'    xmlns:sys='System'   xmlns:sm='clr-namespace:Silverlight.Mine;assembly=Silverlight.Mine'   Width='400' Height='300'>     <UserControl.Resources>         <sm:SomeTypeConverter x:Key='MySomeTypeConverter' />     </UserControl.Resources>         <Grid x:Name='LayoutRoot' Background='White'>         <TextBlock x:Name='myTextBlock' Text='{Binding Path=SomeDates, Converter={StaticResource MySomeTypeConverter}}' />     </Grid> </UserControl> 

    C# Page.xaml.cs

    namespace Silverlight.Mine {     public partial class Page : UserControl     {         private SomeType m_mySomeType = new SomeType();          public Page()         {             InitializeComponent();             myTextBlock.DataContext = m_mySomeType;         }     } } 

    C# SomeType.cs

    namespace Silverlight.Mine {     public class SomeType     {         public List<DateTime> SomeDates { get; set; }          public SomeType()         {             SomeDates = new List<DateTime>();             SomeDates.Add(DateTime.Now.AddDays(-1));             SomeDates.Add(DateTime.Now);             SomeDates.Add(DateTime.Now.AddDays(1));         }     }      public class SomeTypeConverter : IValueConverter     {         public object Convert(object value,                        Type targetType,                        object parameter,                        CultureInfo culture)         {             if (value != null)             {                 List<DateTime> myList = (List<DateTime>)value;                 return myList[0].ToString('dd MMM yyyy');             }             else             {                  return String.Empty;             }         }          public object ConvertBack(object value,                               Type targetType,                               object parameter,                               CultureInfo culture)         {             if (value != null)             {                 return (List<DateTime>)value;             }             return null;         }     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 68k
  • Answers 69k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Firstly, I'd do all of that work when the page… May 11, 2026 at 12:25 pm
  • added an answer In our particular case, the problem was that every page… May 11, 2026 at 12:25 pm
  • added an answer I'm guessing you don't have control over the other two… May 11, 2026 at 12:25 pm

Related Questions

Let's say that I have written a custom e-mail management application for the company
Lets say I have a Dictionary object: Dictionary myDictionary<int, SomeObject> = new Dictionary<string, SomeObject>();
Lets say I have a single object of type Car which I want to
I have a data object (let's say it's called 'Entry') that has a set
Let's say you have a form with a component that displays data from a
Greetings stackers, I'm trying to come up with the best database schema for an

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.