Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6155507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:26:52+00:00 2026-05-23T20:26:52+00:00

I have this databinding that doesn’t work and I can not figure ut why.

  • 0

I have this databinding that doesn’t work and I can not figure ut why. The message that I am getting in output window is:

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='MyProject.Controls.DetailDataControl', AncestorLevel='1''. BindingExpression:Path=IsEditing; DataItem=null; target element is 'TextBox' (Name='forenameTextBox'); target property is 'IsEnabled' (type 'Boolean')

The xaml is:

<ad:DocumentContent  x:Class="MyProject.Controls.DetailDataControl"
      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:ec="clr-namespace:MyProject.Controls"
      xmlns:ecc="clr-namespace:MyProject.Classes.Converters"
      xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
      mc:Ignorable="d"
      d:DesignHeight="300" d:DesignWidth="300">
      <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
           <Grid.RowDefinitions>        
               <RowDefinition Height="20"/>   
               <RowDefinition Height="Auto"/>
               <RowDefinition  Height="*"/>
               </Grid.RowDefinitions>
               <WrapPanel HorizontalAlignment="Right"  VerticalAlignment="Stretch" Grid.Row="0" >
                   <Button Content="Edit" HorizontalAlignment="Right"  Name="editButton1" VerticalAlignment="Stretch" Click="editButton1_Click" />
               </WrapPanel>
               <Grid x:Name="pDataGrid" Margin="10,10,10,10" Grid.Row="1">
               <Grid.Resources>
                    <ecc:InvertBooleanConverter  x:Key="boolConvert"/> 
               <Style x:Key="BaseStyle" TargetType="Control">
                   <Setter Property="HorizontalAlignment" Value="Stretch"/>
                   <Setter Property="VerticalAlignment" Value="Stretch"/>
                   <Setter Property="FontFamily" Value="Arial"/>
                   <Setter Property="FontSize" Value="12" />
               </Style>
               <Style TargetType="Label" BasedOn="{StaticResource BaseStyle}" > 
                   <Setter Property="HorizontalAlignment" Value="Stretch"/>
                   <Setter Property="VerticalAlignment" Value="Stretch"/>
                   <Setter Property="Foreground" Value="Blue"/>
               </Style>
               <Style TargetType="TextBox" BasedOn="{StaticResource BaseStyle}">
               </Style>
               <Style TargetType="DatePicker" BasedOn="{StaticResource BaseStyle}" > 
                   <Setter Property="HorizontalAlignment" Value="Stretch"/>
                   <Setter Property="VerticalAlignment" Value="Stretch"/>
                   <Setter Property="IsHitTestVisible"  Value="{Binding Path=IsEditing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ec:DetailDataControl}}}" />
               </Style>
               <Style TargetType="ComboBox" BasedOn="{StaticResource BaseStyle}">
                   <Setter Property="IsEnabled" Value="{Binding Path=IsEditing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ec:DetailDataControl}}}" />
               </Style>
               <Style TargetType="Button" BasedOn="{StaticResource BaseStyle}">
                   <Setter Property="Width" Value="75" />
               </Style>
               <Style TargetType="RowDefinition"   >
                   <Setter Property="Height" Value="30" /> 
                   <Setter Property="SharedSizeGroup" Value="RowzSize"/>
               </Style>
               <Style x:Key="LabelColumnStyle" TargetType="ColumnDefinition"  >
                   <Setter Property="Width" Value="*" /> 
                   <Setter Property="SharedSizeGroup" Value="LabelColumnszSize"/> 
               </Style> 
               <Style x:Key="TextColumnStyle" TargetType="ColumnDefinition"   > 
                   <Setter Property="Width" Value="3*" />
               </Style>
           </Grid.Resources>
           <Grid.RowDefinitions>
               <RowDefinition />
               <RowDefinition /> 
               <RowDefinition />  
               <RowDefinition /> 
               <RowDefinition />  
               <RowDefinition />  
               <RowDefinition />
               <RowDefinition />
           </Grid.RowDefinitions>
           <Grid.ColumnDefinitions>
               <ColumnDefinition Style="{StaticResource LabelColumnStyle}"/>
               <ColumnDefinition Style="{StaticResource TextColumnStyle}"/>
           </Grid.ColumnDefinitions> 
           <Label Content="forename" Grid.Column="0" Grid.Row="0" />
           <TextBox Grid.Column="1" Grid.Row="0" x:Name="forenameTextBox" Text="{Binding Path=Title}"  IsEnabled="{Binding Path=IsEditing, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ec:DetailDataControl}}}"/>
       </Grid>
       <TabControl Grid.Row="2" HorizontalAlignment="Stretch"  Name="tabControl1" VerticalAlignment="Stretch" >
           <TabItem Header="Address" Name="addresTabItem"> 
               <DataGrid  Name="addressDataGrid"  AutoGenerateColumns="False" ItemsSource="{Binding}" IsReadOnly="True"> 
                   <DataGrid.Columns>
                       <DataGridTextColumn Binding="{Binding Path='Order'}" Header="Order" Width="*" />
                       <DataGridTextColumn Binding="{Binding Path='Address1'}" Header="Address1"   Width="3*" /> 
                       <DataGridTextColumn Binding="{Binding Path='Address2'}" Header="Address2" Width="3*" />
                       <DataGridTextColumn Binding="{Binding Path='Postcode'}" Header="Postcode" Width="*" /> 
                       <DataGridTextColumn Binding="{Binding Path='TelNo'}" Header="TelNo" Width="*" />
                       <DataGridTextColumn Binding="{Binding Path='MovedToAddressDate', StringFormat={}\{0:dd/MM/yyyy\}}" Header="Moved Date" Width="*" />
                       <DataGridTemplateColumn>
                           <DataGridTemplateColumn.CellTemplate>  
                               <DataTemplate>
                                    <Button Content="Button" Tag="{Binding Path=ID}"  Name="editAddressButton" Click="editAddressButton_Click" />
                               </DataTemplate>
                           </DataGridTemplateColumn.CellTemplate>
                       </DataGridTemplateColumn>
                   </DataGrid.Columns>
               </DataGrid>
           </TabItem>
       </TabControl>
    </Grid> 
</ad:DocumentContent>

and C#’code is as follow:

public static readonly DependencyProperty IsEditingProperty = DependencyProperty.Register(
        "IsEditing", typeof(Boolean), typeof(DetailDataControl), new PropertyMetadata(false));
public Boolean IsEditing    
{
    get { return (Boolean)GetValue(IsEditingProperty); }
    set { SetValue(IsEditingProperty, value); }
}

Update1

A simplifed version:

Xaml code (user control)

<ad:DocumentContent x:Class="TestWpf.UserControl1"
         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:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
          xmlns:ec="clr-namespace:TestWpf"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<Grid x:Name="MainGrid" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
    <Grid.RowDefinitions>
        <RowDefinition Height="20"/>
        <RowDefinition Height="Auto"/>
        <RowDefinition  Height="*"/>
    </Grid.RowDefinitions>
    <WrapPanel HorizontalAlignment="Right"  VerticalAlignment="Stretch" Grid.Row="0" >
        <Button Content="Edit" HorizontalAlignment="Right"  Name="editButton1" VerticalAlignment="Stretch" Click="button1_Click" />
    </WrapPanel>
    <Grid x:Name="pDataGrid" Margin="10,10,10,10" Grid.Row="1">
        <Grid.Resources>
            <Style TargetType="TextBox" >
                <Setter Property="IsEnabled" Value="{Binding Path=IsEditing, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ec:UserControl1}}}" />
            </Style>
        </Grid.Resources>
        <Grid.ColumnDefinitions>
            <ColumnDefinition />
            <ColumnDefinition />
            <ColumnDefinition />

        </Grid.ColumnDefinitions>
        <TextBox x:Name="textBox1"  Grid.Column="0" Text="!234" />
        <TextBox x:Name="textBox2"    Grid.Column="1" />
    </Grid>
</Grid>
</ad:DocumentContent>

User control C# code:

namespace TestWpf
{
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : DocumentContent
{
    public static readonly DependencyProperty IsEditingProperty = DependencyProperty.Register(
          "IsEditing", typeof(Boolean), typeof(UserControl1), new PropertyMetadata(false));

    public Boolean IsEditing
    {
        get { return (Boolean)GetValue(IsEditingProperty); }
        set { SetValue(IsEditingProperty, value); }
    }
    public UserControl1()
    {
        InitializeComponent();
    }
    private void button1_Click(object sender, RoutedEventArgs e)
    {
        IsEditing = !IsEditing;
    }
}
}

I am not getting any binding error in output, but the binsing doesn’t work.

Update2

Checking with Snoop, I found that UserControl1 is not the parent of textbox2 (!). I belive Avalon dock changing the parent type from UserControl1 to a different type. The parent of MainGrid is contentPresenter and there is no UserControl in the visual tree.

What can I do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:26:54+00:00Added an answer on May 23, 2026 at 8:26 pm

    The problem is that my usercontrol was created from DocumentContent (an AvalonDock object). If I create my control based on UserControl and then add it to a Document content it would work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a dynamic languaging system that doesn't use conventional resource files; fetching resources
I have been wrestling with getting databinding to work in WPF for a little
I have this code in jQuery, that I want to reimplement with the prototype
I have this setup where in my development copy I can commit changes on
I have this RewriteRule that works too well :-) RewriteRule ^([^/]*)/$ /script.html?id=$1 [L] The
I have this line in a useful Bash script that I haven't managed to
I have a ComboBox that doesn't seem to update the SelectedItem/SelectedValue. The ComboBox ItemsSource
In WPF Databinding, I understand that you have DataContext which tells an element what
Here is what i have: a SQL CE database, that holds this Category table,
I have a dropdownlist that I already have manually databinding. I currently get the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.