Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my first question here, so hope I get the formatting at least presentable.

Below are three sets of XAML and C# code behind. One builds on the other. Each subsequent set solves a problem in the prior set. Basically, there is a Contact class, a List<Contact> observable collection, an Expander with a Contact Name and Contact Phone. What is displayed in the ListBox's ItemTemplate is simple, only one TextBlock binding to the Contact Property ListString. The ListString's get returns the result of the method ListItem(). The ListItem() method is a very simplified version of what I need. I know that as simple as things are now, what is displayed in the ListBox could be done with a modified ItemTemplate, but that would not carry through to the more complicated version needed. So, please, no altering of the ItemTemplate. The Expander's Header is populated with the ListBox's selected item's ListString. As stated above, this ListString is populated with the Contact's method ListItem(). The ListItem() returns a string based on the contents of the properties Name and Phone.

Now, this is the problem I'm trying to solve. When a user types into the Name and/or Phone TextBoxes, both the ListBox's displayed item needs to change and the Expander's Header needs to change. At the thrid set, I've accomplished having the ListBoxes displayed item change as the user types, but, the Expander's Header does not change. It only changes when you select another item and then reselect the item just unselected.

I put the full listings here so that it may be something others can learn from. Especially the ability to give focus to a particular control, which is an extremely difficult thing to do reliably in WPF.

Set 1:

<Window x:Class="Binding_List_Expander_01.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Binding List Expander 01"
        Height="350"
        Width="525">
    <Window.Resources>

    </Window.Resources>
    <Grid>
        <StackPanel Orientation="Horizontal" Margin="3">
            <StackPanel Orientation="Vertical" Margin="3">
                <ListBox Name="ContactList"
                            ItemsSource="{Binding}"
                            Width="166"
                            Height="270"
                            Margin="0,0,0,3">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding Path=ListString}" />
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
                <Button Name="NewItem" 
                        Content="New"
                        Click="Event_NewContact_Click"
                        Height="23" 
                        Width="75" />
            </StackPanel>
            <StackPanel Orientation="Vertical">
                <Expander Name="ContactExpander">
                    <Expander.HeaderTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding ElementName=ContactList, Path=SelectedItem.ListString}" />
                        </DataTemplate>
                    </Expander.HeaderTemplate>
                    <StackPanel Margin="21,0,0,0"
                                Orientation="Vertical">
                        <Grid Margin="3">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="Auto" />
                                <RowDefinition Height="3" />
                                <RowDefinition Height="Auto" />
                            </Grid.RowDefinitions>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="auto" />
                                <ColumnDefinition Width="3" />
                                <ColumnDefinition Width="250" />
                            </Grid.ColumnDefinitions>
                            <TextBlock Grid.Row="0"
                                        Grid.Column="0"
                                        Text="Name:" />
                            <TextBox Grid.Row="0"
                                        Grid.Column="2"
                                        Name="ContactName"
                                        Text="{Binding ElementName=ContactList, Path=SelectedItem.Name, Mode=TwoWay}" />
                            <TextBlock Grid.Row="2"
                                        Grid.Column="0"
                                        Text="Phone:" />
                            <TextBox Grid.Row="2"
                                        Grid.Column="2"
                                        Text="{Binding ElementName=ContactList, Path=SelectedItem.Phone, Mode=TwoWay}" />
                        </Grid>
                    </StackPanel>
                </Expander>
                <Expander Header="&#13;This is a place holder, there will be&#13;many Expanders following this one."
                            Margin="0,10,0,0">

                </Expander>
            </StackPanel>
        </StackPanel>
    </Grid>
</Window>


using System.Windows;
using System.Collections.ObjectModel;

namespace Binding_List_Expander_01
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        ObservableCollection<Contact> Contacts = new ObservableCollection<Contact>();

        public MainWindow()
        {
            InitializeComponent();
            ContactList.DataContext = Contacts;
        }

        private void Event_NewContact_Click(object sender, RoutedEventArgs e)
        {
            Contacts.Insert(0, new Contact());
            ContactList.SelectedIndex = 0;
            ContactName.Focus();
        }
    }

    public class Contact
    {
        public string Name { get; set; }
        public string Phone { get; set; }
        public string ListString { get { return ListItem(); } } // See comments in ListItem() below.

        public Contact()
        {
            Name = string.Empty;
            Phone = string.Empty;
        }

        private string ListItem()
        {/*
          * This is a simplified version, the actual version is complicated and cannot be templatized.
          * Please, do not suggest templitazing this.  I know this simple version can be templitazed,
          * but the actual version cannot be templatized.  I need to know how to make this work as it
          * currently is.
          */
            if ((Name + Phone).Trim().Length == 0)
                return "<New Contact>";
            else
            {
                string li = Name.Trim();
                if (li.Length != 0 && Phone.Trim().Length != 0) li += ": ";
                return li + Phone.Trim();
            }
        }
    }

}

The next set solves the problem of when the [New] button is clicked, the expander expands and the Name field is focused.

Set 2:

<Window x:Class="Binding_List_Expander_02.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Binding List Expander 02"
        Height="350"
        Width="525">
    <Window.Resources>

    </Window.Resources>
    <Grid>
        <StackPanel Orientation="Horizontal" Margin="3">
            <StackPanel Orientation="Vertical" Margin="3">
                <ListBox Name="ContactList"
                         ItemsSource="{Binding}"
                         Width="166"
                         Height="270"
                         Margin="0,0,0,3">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding Path=ListString}" />
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
                <Button Name="NewItem" 
                        Content="New"
                        Click="Event_NewContact_Click"
                        Height="23" 
                        Width="75" />
            </StackPanel>
            <StackPanel Orientation="Vertical">
                <Expander Name="ContactExpander">
                    <Expander.HeaderTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding ElementName=ContactList, Path=SelectedItem.ListString}" />
                        </DataTemplate>
                    </Expander.HeaderTemplate>
                    <StackPanel Margin="21,0,0,0"
                                Orientation="Vertical">
                        <Grid Margin="3">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="Auto" />
                                <RowDefinition Height="3" />
                                <RowDefinition Height="Auto" />
                            </Grid.RowDefinitions>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="auto" />
                                <ColumnDefinition Width="3" />
                                <ColumnDefinition Width="250" />
                            </Grid.ColumnDefinitions>
                            <TextBlock Grid.Row="0"
                                       Grid.Column="0"
                                       Text="Name:" />
                            <TextBox Grid.Row="0"
                                     Grid.Column="2"
                                     Name="ContactName"
                                     Text="{Binding ElementName=ContactList, Path=SelectedItem.Name, Mode=TwoWay}" />
                            <TextBlock Grid.Row="2"
                                       Grid.Column="0"
                                       Text="Phone:" />
                            <TextBox Grid.Row="2"
                                     Grid.Column="2"
                                     Text="{Binding ElementName=ContactList, Path=SelectedItem.Phone, Mode=TwoWay}" />
                        </Grid>
                    </StackPanel>
                </Expander>
                <Expander Header="&#13;This is a place holder, there will be&#13;many Expanders following this one."
                          Margin="0,10,0,0">

                </Expander>
            </StackPanel>
        </StackPanel>
    </Grid>
</Window>

using System.Windows;
using System.Collections.ObjectModel;
using System.Windows.Threading;
using System.Threading;

namespace Binding_List_Expander_02
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        ObservableCollection<Contact> Contacts = new ObservableCollection<Contact>();

        public MainWindow()
        {
            InitializeComponent();
            ContactList.DataContext = Contacts;
        }

        private void Event_NewContact_Click(object sender, RoutedEventArgs e)
        {
            Contacts.Insert(0, new Contact());
            ContactList.SelectedIndex = 0;
            if (ContactExpander.IsExpanded)
                ContactName.Focus();
            else
            {
                ContactExpander.IsExpanded = true;
                SetFocus(ContactName);
            }
        }

        public void SetFocus(UIElement control)
        {
            control.Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle, (ThreadStart)delegate { control.Focus(); });
        }

    }

    public class Contact
    {
        public string Name { get; set; }
        public string Phone { get; set; }
        public string ListString { get { return ListItem(); } } // See comments in ListItem() below.

        public Contact()
        {
            Name = string.Empty;
            Phone = string.Empty;
        }

        private string ListItem()
        {/*
          * This is a simplified version, the actual version is complicated and cannot be templatized.
          * Please, do not suggest templitazing this.  I know this simple version can be templitazed,
          * but the actual version cannot be templatized.  I need to know how to make this work as it
          * currently is.
          */
            if ((Name + Phone).Trim().Length == 0)
                return "<New Contact>";
            else
            {
                string li = Name.Trim();
                if (li.Length != 0 && Phone.Trim().Length != 0) li += ": ";
                return li + Phone.Trim();
            }
        }
    }

}

The next set solves the problem of when typing into the Name and/or Phone fields, the ListBox's item is automatically updated. If you add a [New] Contact, then clicked on the old contact, the ListBox's item updates, but I want it to update as the user types.

Set 3:

<Window x:Class="Binding_List_Expander_03.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Binding List Expander 03"
        Height="350"
        Width="525">
    <Window.Resources>

    </Window.Resources>
    <Grid>
        <StackPanel Orientation="Horizontal" Margin="3">
            <StackPanel Orientation="Vertical" Margin="3">
                <ListBox Name="ContactList"
                         ItemsSource="{Binding}"
                         Width="166"
                         Height="270"
                         Margin="0,0,0,3">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding Path=ListString}" />
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
                <Button Name="NewItem" 
                        Content="New"
                        Click="Event_NewContact_Click"
                        Height="23" 
                        Width="75" />
            </StackPanel>
            <StackPanel Orientation="Vertical">
                <Expander Name="ContactExpander">
                    <Expander.HeaderTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding ElementName=ContactList, Path=SelectedItem.ListString}" />
                        </DataTemplate>
                    </Expander.HeaderTemplate>
                    <StackPanel Margin="21,0,0,0"
                                Orientation="Vertical">
                        <Grid Margin="3"
                              TextBoxBase.TextChanged="Event_ContactName_TextChanged">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="Auto" />
                                <RowDefinition Height="3" />
                                <RowDefinition Height="Auto" />
                            </Grid.RowDefinitions>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="auto" />
                                <ColumnDefinition Width="3" />
                                <ColumnDefinition Width="250" />
                            </Grid.ColumnDefinitions>
                            <TextBlock Grid.Row="0"
                                       Grid.Column="0"
                                       Text="Name:" />
                            <TextBox Grid.Row="0"
                                     Grid.Column="2"
                                     Name="ContactName"
                                     Text="{Binding ElementName=ContactList, Path=SelectedItem.Name, Mode=TwoWay}" />
                            <TextBlock Grid.Row="2"
                                       Grid.Column="0"
                                       Text="Phone:" />
                            <TextBox Grid.Row="2"
                                     Grid.Column="2"
                                     Name="ContactPhone"
                                     Text="{Binding ElementName=ContactList, Path=SelectedItem.Phone, Mode=TwoWay}" />
                        </Grid>
                    </StackPanel>
                </Expander>
                <Expander Header="&#13;This is a place holder, there will be&#13;many Expanders following this one."
                          Margin="0,10,0,0">
                </Expander>
            </StackPanel>
        </StackPanel>
    </Grid>
</Window>

using System.Windows;
using System.Collections.ObjectModel;
using System.Windows.Threading;
using System.Threading;
using System.Windows.Controls;

namespace Binding_List_Expander_03
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        ObservableCollection<Contact> Contacts = new ObservableCollection<Contact>();

        public MainWindow()
        {
            InitializeComponent();
            ContactList.DataContext = Contacts;
        }

        private void Event_NewContact_Click(object sender, RoutedEventArgs e)
        {
            Contacts.Insert(0, new Contact());
            ContactList.SelectedIndex = 0;
            if (ContactExpander.IsExpanded)
                SetFocus(ContactName);
            else
            {
                ContactExpander.IsExpanded = true;
                SetFocus(ContactName);
            }
        }

        public void SetFocus(UIElement control)
        {
            control.Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle, (ThreadStart)delegate { control.Focus(); });
        }

        private void Event_ContactName_TextChanged(object sender, TextChangedEventArgs e)
        {
            var tb = e.Source as TextBox;
            Contact C = ContactList.SelectedItem as Contact;
            if (tb == ContactName)
                C.Name = tb.Text;
            else if (tb == ContactPhone)
                C.Phone = tb.Text;
            ContactList.Items.Refresh();
        }
    }

    public class Contact
    {
        public string Name { get; set; }
        public string Phone { get; set; }
        public string ListString { get { return ListItem(); } } // See comments in ListItem() below.

        public Contact()
        {
            Name = string.Empty;
            Phone = string.Empty;
        }

        private string ListItem()
        {/*
          * This is a simplified version, the actual version is complicated and cannot be templatized.
          * Please, do not suggest templitazing this.  I know this simple version can be templitazed,
          * but the actual version cannot be templatized.  I need to know how to make this work as it
          * currently is.
          */
            if ((Name + Phone).Trim().Length == 0)
                return "<New Contact>";
            else
            {
                string li = Name.Trim();
                if (li.Length != 0 && Phone.Trim().Length != 0) li += ": ";
                return li + Phone.Trim();
            }
        }
    }

}

The above set, when typing into the Name and/or the Phone field, the ListBox's item content changes as they type. But, the Expander's Header does not change as typing is done. This is what I want to happen. The Expander's Header needs to update just as the ListBox's Item changes. Any idea of how this can be accomplished?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.