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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:17:45+00:00 2026-05-30T04:17:45+00:00

I have a numeric value that I wish to be converted to a more

  • 0

I have a numeric value that I wish to be converted to a more user-friendly string format when it’s displayed. I already have an IValueConverter called FlightLevelConverter that I’m using to do this for a normal TextBlock UI item where it works fine.

I now wish to apply the converter to a ComboBox of altitude choices, but I can’t get it to work.

This is the relevant part of the XAML I’m using for the ComboBox:

<UserControl.Resources>
    <status:FlightLevelConverter x:Key="FlightLevelConverter"/>
</UserControl.Resources>
...
<ComboBox x:Name="AltitudeCombo" Grid.Row="0" Grid.Column="3" Width="100">
  <ComboBox.ItemTemplate>
    <DataTemplate>
      <TextBlock Text="{Binding Converter={StaticResource FlightLevelConverter}}"/>
    </DataTemplate>
  </ComboBox.ItemTemplate>
</ComboBox>

It displays the un-converted numeric values, not the nice string values. I get no errors and if I set a breakpoint in the converter it doesn’t get hit, showing that the converter is never called.

I’ve spent all morning trawling the Internet in general and StackOverflow in particular to try to discover what I’m doing wrong, but haven’t found out anything useful.

Why is my converter not being called? What am I doing wrong?

  • 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-30T04:17:47+00:00Added an answer on May 30, 2026 at 4:17 am

    How do you add the items to the ComboBox?

    You should set the ItemsSource property to a collection of numeric values, e.g.

    List<double> values = new List<double>();
    values.Add(2.1);
    values.Add(3.2);
    values.Add(4.3);
    values.Add(5.4);
    AltitudeCombo.ItemsSource = values;
    

    If you add ComboBoxItems like this

    AltitudeCombo.Items.Add(new ComboBoxItem() { Content = 1.4 });
    

    the ItemTemplate and hence the binding with its converter won’t be applied.

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

Sidebar

Related Questions

I have a numeric value in a Textbox that I'd like to format as
Lets say I have a string COLIN. The numeric value of this string would
I have a page which expects a numeric query string value. For example: Details.aspx?rgn=1234
I current have the following regular expression to accept any numeric value that is
We have a SQL Server database table that consists of user id, some numeric
I have a value I am pulling into a string that looks like this:
I have a MySQL query that fetches a numeric value VARCHAR (20) from a
I have a list of string that have already been arranged according to a
I have two documents that should share a numeric value that should also increase
I have a textView (tF1) that will be supplied with a numeric value by

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.