I have a stack panel that contains a text box and a list box.

<StackPanel
    Grid.Row="3"
    Grid.Column="1"
    VerticalAlignment="Top"
    Grid.RowSpan="5"
    Margin="0,5,0,0"
    Panel.ZIndex="100"
    Width="140"
    KeyboardNavigation.IsTabStop="False">
    <TextBox
        Style="{StaticResource TextBoxStyle}"
        Text="{Binding projectName, Mode=TwoWay}"
        TextChanged="projectName_TextChanged"
        LostFocus="projectName_LostFocus"
        IsReadOnly="{Binding isROProject}"
        Background="{Binding projectBackgroundBrush}"
        TabIndex="1"    />
    <ListBox
        Name="projectListBox"
        Style="{StaticResource ListBoxStyle}"
        Visibility="{Binding projectListBoxVisibility, Mode=TwoWay}"
        ItemsSource="{Binding projects}"
        DisplayMemberPath="projectName"
        SelectedValuePath="projectId"
        SelectionChanged="projectListBox_SelectionChanged"
        KeyboardNavigation.IsTabStop="False" />
</StackPanel>

The ListBox is hidden until the the text changes in the text box, at which point the list box displays a filtered list that matches the text entered in the text box. This works fine.

My problem is that when the user clicks in the ListBox on one of the options that matches the text, the TextBox.LostFocus event occurs, but NOT the ListBox.SelectionChanged event. Essentially, the user has to click twice on the desired ListBox item in order for the selectionchanged event to fire. I've just recently moved to .Net 4 from 3.5 (and it worked fine in 3.5). Is this a change in .Net 4, or is something else going on? Thanks in advance.

EDIT: Requested code (sorry about the formatting; I'm still learning how it works)

private void projectListBoxSelectionDidChange(Object sender, SelectionChangedEventArgs e) {
        try {
            unsubscribeToWindowDelegates();
            ListBox _lb = sender as ListBox;

            if (_lb != null) {
                Project _p = e.AddedItems[0] as Project;

                if (_p != null) {
                    //set progNumber to the text of the selected programnumber
                    projectName = _p.projectName;
                    selectedProject = _p;

                    //set the programId for the current project entry to the program id of the remaining programnumber
                    _projEntry.projectId = _p.projectId;
                    enableSaveButton = true;
                }
            }               
        } catch (IndexOutOfRangeException) {
            //do nothing
        } finally {
            subscribeToWindowDelegates();
        }
    }

private void projectNameDidLoseFocus(Object sender, RoutedEventArgs e) {
    if (String.IsNullOrEmpty(projectName)) {
        enableSaveButton = false;
        return;
    }

    if (String.IsNullOrEmpty(projectName.Trim())) {
        projectName = "";
        enableSaveButton = false;
        return;
    }

    _dm.searchText = projectName;
    _dm.projectSearchType = codFinancialProjectSearchType.Both;
    projects.Refresh();

//see how many projects are in projects
if (projects.Count == 0) {
    //ask the user  if they want to add the text as a project
    MessageBoxResult _result = MessageBox.Show("Do you want to add " + projectName + " as a new project?", "Question", MessageBoxButton.YesNo);

    if (_result == MessageBoxResult.Yes) {
        //create a new Project
        Project _newProject = new Project(_dm.searchText, selectedDepartment);
        _newProject.projectId = _dm.addProject(_newProject);
        selectedProject = _newProject;
        _projEntry.projectId = _newProject.projectId;
        _projEntry.projectName = _newProject.projectName;
        projects = _dm.projectsCollectionView;
    }

    projectListBoxVisibility = Visibility.Hidden;

} else if (projects.Count == 1) {
    //set progNumber to the text of the remaining programnumber
    projects.MoveCurrentToLast();
    String _pn = ((Project)projects.CurrentItem).projectName;
    projectName = _pn;
    projectName = _pn;
    selectedProject = (Project)projects.CurrentItem;

    //set the programId for the current project entry to the program id of the remaining programnumber
    _projEntry.projectId = ((Project)projects.CurrentItem).projectId;
    _projEntry.projectName = projectName;
    projectListBoxVisibility = Visibility.Hidden;
} else {
    //Do nothing
}

//update the UI
enableSaveButton = true;
}

private void projectNameTextDidChange(Object sender, TextChangedEventArgs e) {
    TextBox _tb = e.Source as TextBox;
_dm.searchText = _tb.Text;
_dm.searchProjectId = selectedDepartment.departmentId;
_dm.projectSearchType = codFinancialProjectSearchType.Both;
projects.Refresh();

try {
    if (projects.Count == 0 || String.IsNullOrEmpty(_dm.searchText) || !_shouldProjectListBoxBeSeen) {
        projectListBoxVisibility = Visibility.Hidden;
    } else {
    projectListBoxVisibility = Visibility.Visible;
    }

    //configureUI();
    _shouldProjectListBoxBeSeen = true;
} catch (IndexOutOfRangeException) {
    //do nothing
    _shouldProjectListBoxBeSeen = true;
}
}
link|improve this question

80% accept rate
Can we see the contents of projectName_TextChanged, projectName_LostFocus, and projcetListBox_SelectionChanged? – sixlettervariables Jun 7 '11 at 16:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.