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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:14:38+00:00 2026-06-10T02:14:38+00:00

Maybe a simple task but I can’t find the solution. I have a combobox

  • 0

Maybe a simple task but I can’t find the solution. I have a combobox connected to a database. Instead of displaying the content of ProductLookup I just want to display the words ‘male’ and ‘female’ on the popup menu.

Thank you

<ComboBox Height="23" Name="ComboBox2" Width="120"  IsEditable="False"
                      ItemsSource="{Binding Source={StaticResource ProductLookup}}"
                      SelectedValue="{Binding Path=ProductID}" 
                      SelectedValuePath="ProductID" 
                      DisplayMemberPath="Name"/>
  • 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-06-10T02:14:40+00:00Added an answer on June 10, 2026 at 2:14 am

    Write a Converter that takes one of your “Product” objects….looks at the gender related data inside it, or does the gender determining logic, and then returns the gender string, “male” or “female”.

    Then use it in your XAML to set the TextBlock:

    <StackPanel Height="197" HorizontalAlignment="Left" Margin="300,6,0,0" Name="StackPanel5" VerticalAlignment="Top" Width="285"
                                 DataContext="{Binding Source={StaticResource DetailViewPagos}}">
        <StackPanel.Resources>
            <local:ProductToGenderConverter x:Key="prodtogenderconv"/>
        </StackPanel.Resources>
    
        <ComboBox Height="23" Name="ComboBox2" Width="120" IsEditable="False"
            ItemsSource="{Binding Source={StaticResource ProductLookup}}">
        <ComboBox.ItemTemplate>
            <DataTemplate>
                 <TextBlock Text="{Binding Converter={StaticResource prodtogenderconv}}" />
            </DataTemplate>
        </ComboBox.ItemTemplate>
        </ComboBox>
    

    public class ProductToGenderConverter : IValueConverter {
    
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
    
            MyProduct prod = value as MyProduct;
    
            if (prod is for a male) // Pseudocode for condition
                return "male";
    
            if (prod is for a female) // Pseudocode for condition
                return "female";
    
            return null or "";
        }
    
        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
            throw new NotImplementedException();
        }
    }
    

    Alternatively you could provide a ViewModel which wraps your Product object, which has a specific property that indicates the “genderness” of the Product…then create a collection of those objects for setting in your ComboBox…then you can use DisplayMemberPath to point to that property.

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

Sidebar

Related Questions

Make things as simple as possible, but no simpler. Can we find the solution/s
This should be simple, but I can't find how to do this (or maybe
This may be a simple task but at the moment I really have no
Maybe there is a really simple solution for my problem, but I'm really confused
Ok so this maybe a simple/silly question but I don't know so here goes:
Maybe a very simple question. How can I put in this code <Query> <Where>
Maybe it is just a simple mistake but this thing is driving me crazy.
Maybe this is a simple problem, but I am just not seeing it :)
Maybe the question sound not good or too simple. But not for me in
This may be a simple fix and maybe I'm missing something obvious, but when

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.