I've having some trouble binding a user control to a user control.

I think its because the Data context of the first user control is binded to a view model, while the second user control is binded to a property in the first user control.

I tried to bypass the data context with binding to self binding property but it didnt seem to help.

{Binding Path=EditContent, RelativeSource={RelativeSource Self}}

Only the first user control shows

Here is the XAML

<UserControl x:Class="DIMS_Permissions.UI.AllUsers"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:viewModel="clr-namespace:DIMS_Permissions.ViewModel"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="900">
<Grid Width="900">
<TreeView ItemsSource="{Binding Users}" HorizontalAlignment="Left">
    <TreeView.ItemContainerStyle>
        <!-- 
    This Style binds a TreeViewItem to a TreeViewItemViewModel. 
    -->
        <Style TargetType="{x:Type TreeViewItem}">
            <Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay}" />
            <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}" />
            <Setter Property="FontWeight" Value="Normal" />
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="FontWeight" Value="Bold" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </TreeView.ItemContainerStyle>

    <TreeView.Resources>    
        <ContextMenu x:Key="CategoryMenu">
            <MenuItem Header="Add Subcategory" Command="New">
            </MenuItem>

            <MenuItem Header="Remove Category" Command="Delete">
            </MenuItem>
        </ContextMenu>

        <HierarchicalDataTemplate 
            DataType="{x:Type viewModel:UsersViewModel}" 
            ItemsSource="{Binding Children}"
            >
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding UserName}">
                    <TextBlock.ContextMenu>
                            <ContextMenu>
                                <MenuItem Header="Edit" Command="{Binding EditCommand}" CommandParameter="{Binding UserName}"/>
                                <MenuItem Header="Delete"/>
                            </ContextMenu>
                        </TextBlock.ContextMenu>
                </TextBlock>
            </StackPanel>
        </HierarchicalDataTemplate>

        <HierarchicalDataTemplate 
            DataType="{x:Type viewModel:PermissionCategoryViewModel}" 
            ItemsSource="{Binding Children}"
            >
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding PermissionCategoryName}" />
            </StackPanel>
        </HierarchicalDataTemplate>

        <DataTemplate DataType="{x:Type viewModel:PermissionViewModel}">
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding PermissionName}" />
            </StackPanel>
        </DataTemplate>
    </TreeView.Resources>
</TreeView>
    <ContentControl x:Name="EditContentElement" HorizontalAlignment="Left" VerticalAlignment="Bottom" Content="{Binding EditContent}"/>
</Grid>        

The line in question is:

<ContentControl x:Name="EditContentElement" HorizontalAlignment="Left" VerticalAlignment="Bottom" Content="{Binding EditContent}"/>

This is the code behind

public partial class AllUsers : UserControl, INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    void OnPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }

    private FrameworkElement _editContent = null;
    public FrameworkElement EditContent
    {
        get { return _editContent; }
        set
        {
            _editContent = value;
            OnPropertyChanged("EditContent");
        }
    }

    private RelayCommand _editCommand;
    public ICommand EditCommand
    {
        get
        {
            if (_editCommand == null)
            {
                _editCommand = new RelayCommand(this.LoadUser);
            }
            return _editCommand;
        }
    }

    public void LoadUser(object username)
    {
        string tempname = username.ToString();
        List<string> userPermissions = IPermissionData.GetUserPermissions(tempname);
        new EditUser(userPermissions);
    }

    public AllUsers()
    {
        IPermissionData iPermissionData = new IPermissionData();
        var UserArray = iPermissionData.GetAllUsers();
        AllUsersViewModel allUsersViewModel = new AllUsersViewModel(UserArray);
        DataContext = allUsersViewModel;
        EditContent = new EditUser();
        EditContent.DataContext = this;
        InitializeComponent();
    }
}

I would appreciate any help! Thanks!

link|improve this question

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.