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

The Archive Base Latest Questions

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

I have a WPF application built with MVVM and am trying to display a

  • 0

I have a WPF application built with MVVM and am trying to display a custom class in a combobox. I am still getting the Namespace.Asset despite overriding the ToString Method to something easier on the eyes. What am I doing wrong?
XAML code

<ComboBox ItemsSource="{Binding Drivers}" SelectedItem="{Binding SelectedDriver}" Grid.Row="20" Grid.Column="1" Grid.ColumnSpan="3"/>

ViewModel Code

    public List<Driver> Drivers
    {
        get
        {
            return this.drivers;
        }
        set
        {
            this.drivers = value;
            this.RaisePropertyChanged("Drivers");
        }
    }

    public Driver SelectedDriver
    {
        get
        {
            return this.selectedDriver;
        }
        set
        {
            this.selectedDriver = value;
            this.RaisePropertyChanged("SelectedDriver");
        }
    }

One of the custom classes code with overriden ToString

public class ExperimentalDriver : Driver
{
    public override DriverResponse GetDriverResponse(double time)
    {
         ... random unrelated code....
    }

    public override string ToString()
    {
        return "Experimental Driver";
    }
}
  • 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-22T22:42:05+00:00Added an answer on May 22, 2026 at 10:42 pm

    You might need to set the ToString() on the base class

    Something like:

    public class Driver
    {
        protected string displayName;
    
        public override string ToString()
        {
            return displayName;
        }
    }
    

    Then your class constructors for your sub classes would simply set the displayName

    public class ExperimentalDriver : Driver
    {
        public ExperimentalDriver()
        {
            displayName = "Experimental Driver";
        }
    }
    
    • 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 is built on the MVVM design pattern. I
I have a simple WPF application which I am trying to start. I am
Well, the problem is as follows: I have a WPF Application built using the
I have a WCF client which passes Self-Tracking Entities to a WPF application built
I have a WPF MVVM application. In one of the ViewModels, I have the
All, I have a WPF application built upon SQLite database and user/application Configuration settings.
I have a WPF application, i created a new class named Agent . On
I have a WPF application in VS 2008 with some web service references. For
I have a WPF application that runs fine under XP as an administrator. When
I have a WPF application using Aero Glass. When using the application under a

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.