I have a UserControl that contains several properties that are ReadOnly (the Get method returns a generated value rather than a value that is explicitly set). I need to bind to these properties in my XAML, so I need to convert these properties to DependencyProperty(s). I have used regular DependencyProperty(s) before, but I have never used ReadOnly DependencyProperty(s). I have looked at the documentation, but found it somewhat confusing, and wasn't quite sure how convert my regular ReadOnly property (especially since the value is generated). Is there anywhere that I can see an example/comparison of a regular ReadOnly property (that generates the value) and what it would look like when converted to a ReadOnly DependencyProperty? Thanks.