Change text ComboBox Xaml?

3

I'm using this code to generate a ComboBox but on the screen I get " choose an item " I want to change it.

<ComboBox x:Name="Tempso" 

              HorizontalAlignment="Left" 
              Height="55" 
              Margin="70,243,0,0" 
              VerticalAlignment="Top" 
              Width="205" 

              >

        <ComboBoxItem Content="4/4" Tag="1"/>
    
asked by Edgar Diaz 12.05.2016 в 07:18
source

1 answer

2

There are two properties that these texts have (I do not know which of the two you want to change)

<ComboBox x:Name="Tempso" 
      PlaceholderText="Algun texto" 
      PickerFlyoutBase.Title="Texto cambiado"
    
answered by 12.05.2016 / 14:48
source