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 8123775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:16:46+00:00 2026-06-06T06:16:46+00:00

I am working in WPF and I am creating some userControl which some of

  • 0

I am working in WPF and I am creating some userControl which some of them are inside others.

In the code behind of one of my userControls I created a dependency property as below:
(MyInnerControl.xaml.cs)

public static DependencyProperty MyDependencyProperty = DependencyProperty.Register(
        "MyProperty",
        typeof(Object),
        typeof(MyInnerControl));

public Object MyProperty
    {
        get
        {
            return (Object)GetValue(MyDependencyProperty );
        }
        set
        {
            SetValue(MyDependencyProperty , value);
        }
    }
...
...

And this property works perfectly, But then I try to expose this dependency in another userControl as below:

In my code behind of my container userControl:
(MyContainerControl.xaml.cs)

    public static DependencyProperty MyExternalDependencyProperty = DependencyProperty.Register(
        "MyExternalProperty",
        typeof(Object),
        typeof(MyContainerControl));

public Object MyExternalProperty
    {
        get
        {
            return (Object)GetValue(MyExternalDependencyProperty );
        }
        set
        {
            SetValue(MyExternalDependencyProperty , value);
        }
    }
...
...

And in my XAML:
(MyContainerControl.xaml)

<UserControl x:Class="MyControls.MyContainerControl" Name="this"
         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" 
         mc:Ignorable="d" 
         d:DesignHeight="329" d:DesignWidth="535" xmlns:my="clr-namespace:MyInnerControls">
<Grid>
    <my:MyInnerControl Margin="6,25,6,35" MyProperty="{Binding ElementName=this, Path=MyExternalProperty, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
...
...

Finaly I add MyContainerControl to a grid and do the binding to my viewModel as below:
(AnotherContainer.xaml)

...
<MyContainerControl MyExternalProperty="{Binding MyExternalProperty}"/>
...

My problem is that my ExternalProperty does not get or set any value. What am I doing wrong?

Just to clarify, my DataContext is properly set.

Hope someone can help me, thank you in advance.

  • 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-06-06T06:16:47+00:00Added an answer on June 6, 2026 at 6:16 am

    It looks to me that the problem is caused by the fact that you’re not following the Dependency Property naming conventions, which is to set your dependency property name to <ProperyName>Property (e.g. MyExternalProperty) and using a CLR property wrapper with the same name, but omitting the “Property” suffix (in this case, MyExternal). Following this convention should solve your problems.

    From MSDN – Dependency Properties Overview:

    The naming convention of the property and its backing
    DependencyProperty field is important. The name of the field is always
    the name of the property, with the suffix Property appended. For more
    information about this convention and the reasons for it, see Custom
    Dependency Properties.

    EDIT: A few more things:

    1. Your dependency property registration is wrong: you’re passing "MyProperty" instead of "MyDependency" and "MyExternalProperty" instead of "MyExternalDependency"
    2. You should avoid using this as a name for any of your controls, as it’s a reserved keyword.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on WPF and I am creating a userControl which contains a
I'm working with WPF and I'm developing a complex usercontrol, which is composed of
I'm currently working on a WPF (with C# behind the scenes) system which requires
I am currently working on the WPF project which involves creating a touch-screen application
I'm creating a UserControl in WPF, which I'm calling YesNoButton. It has a single
I'm working on a WPF app that needs to host some Flash content. The
I'm working on creating a date/time user control in WPF using C# 2008. My
I'm creating a WPF application, for which all users must be authenticated to an
I've been working on a Composite WPF application and just read some good guidelines
I am working to create a simple CRUD application in WPF which will work

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.