Describe the bug
Continue from #10389 , when x:Bind to a UserControl.ActualTheme actually compiles, it does not trigger update when the theme actually changes.
Steps to reproduce the bug
- Create a new C++ project
- Create a new
UserControl called MyControl
- Use this xaml
<StackPanel>
<local:MyControl x:Name="MyControl" />
<TextBlock Text="{x:Bind local:MyPage.ElementThemeToString(MyControl.ActualTheme), Mode=OneWay}" />
</StackPanel>
- Build and run, switch theme in windows settings, the text is not updated.
Expected behavior
No response
Screenshots

NuGet package version
None
Windows version
No response
Additional context
Repro