我正在尝试在视觉状态中设置一个自定义附加属性,我尝试了几种使用完整命名空间的方法,没有使用别名等,但没有成功任何想法?
xmlns:p="using:Controls.Views.Properties"
<RelativePanel x:Name="RootPanel" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="VisualStateGroup">
<VisualState x:Name="NarrowView">
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="0" />
</VisualState.StateTriggers>
<VisualState.Setters>
//This is where the value is not achieved
<Setter Target="Text.(p:RelativeSize.Width)" Value="0.5"/>
它不只是触发任何错误,我可以用 j: 替换 p: 并且它不会崩溃,我不知道如何解决这个问题。
这个问题是在这里完成解决方案: Relative width for UI Elements with RelativePanel in XAML with UWP Apps