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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:46:50+00:00 2026-05-16T18:46:50+00:00

I’m writing an app where users enter records. I have a class that represents

  • 0

I’m writing an app where users enter records. I have a class that represents a record. Binding it to text fields works.

MainPage.xaml.cs:

    public MainPage()
    {
        InitializeComponent();

        // newExpense is of type ExpenseInfo
        LayoutRoot.DataContext = newExpense;
    }

ExpenseInfo.cs:

public class ExpenseInfo
{

    public String Name { get; set; }

    // ...
}

MainPage.xaml:

<TextBox Text="{Binding Name, Mode=TwoWay}" Height="23" HorizontalAlignment="Left" Margin="13,205,0,0" Name="NameTextBox" VerticalAlignment="Top" Width="74" />

This works to get and set the input. Two questions:

What if I have a ListBox, whose members I’m trying to represent with an ICollection in ExpenseInfo? Can I automatically bind it? What if I’m using a ComboBox instead?

Sometimes, I want ExpenseInfo to change the input controls. How can I do this? (For example, if the user types “3$0” in the “Cost” text box, I’d like to automatically change it to “$30”.)

Thanks. I’m new to Silverlight 4.

  • 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-16T18:46:51+00:00Added an answer on May 16, 2026 at 6:46 pm

    If you can bind an individual record to a text field, a standard collection of those records will bind in much the same way to a collection field. So yes, you can do exactly that, although the details for ComboBox vary. This article has a lot more information on data binding in WPF, but it sounds like you have a good basic handle on it.

    To automatically correct wrong data, read this article about the Validation process. It explains how to set up your own system to detect and report errors in user input. Handling invalid data doesn’t have to just show a warning in the UI- you could write back to the .Value field of your TextBox to automatically correct the input if you know how to do it, but it’s up to you to write the code both to detect what’s wrong and figure out what’s right.

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

Sidebar

Related Questions

No related questions found

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.