property sharing

About this tag
Property sharing in Windows development refers to the interoperability between XAML and the Visual Layer in Universal Windows Platform (UWP) apps. The Composition APIs allow developers to pull Visuals out of XAML (hand-out Visuals) and push Visuals back into layout (hand-in Visuals), enabling visual enhancements without replacing existing XAML code. This built-in integration supports property sharing between layers, making it possible to combine XAML UI with powerful Composition effects. The tag covers techniques for leveraging these APIs to create rich, performant UWP interfaces while maintaining compatibility with standard XAML controls.
  1. News

    Interop between XAML and the Visual Layer

    The Composition APIs empower Universal Windows Platform (UWP) developers to do beautiful and powerful things when they drop down to the Visual Layer (as in the sample below). One of the remarkable things about these APIs is that they are designed, end-to-end, to integrate with the XAML Layer...
Back
Top