i want a default text on my combobox as i have binded my combo box to certain list of items...here is my code of xaml file.
<ComboBox x:Name="ProjectComboBox" Text="{Binding ProjectNameBinding}" ItemsSource="{Binding projectList, ElementName=MainWin}" SelectedValuePath="_id" DisplayMemberPath="_name" SelectedItem="{Binding ProjectNameBindingClass, Mode=OneWayToSource}" Width="130" Background="White" BorderThickness="1" FontFamily="/TimeSheet;component/Resources/#Open Sans" FontSize="12" Canvas.Right="159" Canvas.Top="8" Height="47"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding _name}" TextWrapping="Wrap"/> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox>