如何更改 Windows 应用程序中的 RelativePanel 附加属性?
How to change RelativePanel attached properties in Windows Apps?
我试图在视觉状态下 VisualState.Setters 中通过 XAML 更改控件的 RelativePanel 附加属性,但属性没有改变,所以我创建了一个依赖项 属性 通过代码隐藏进行测试,两者都不是。
有什么方法可以刷新到一组新的值,例如:
<VisualState.Setters>
<Setter Target="TimestablesControl.RelativePanel.RightOf" Value=""/>
<Setter Target="TimestablesControl.RelativePanel.AlignRightWithPanel" Value="false"/>
<Setter Target="TimestablesControl.RelativePanel.AlignLeftWithPanel" Value="true"/>
</VisualState.Setters>
并使视图更多'responsive'?
要更改 Setter.Target 中附加属性的值,请使用此格式:
TargetObjectXName.(ClassName.AttachedPropertyName)
在你的情况下:
<VisualState.Setters>
<Setter Target="TimestablesControl.(RelativePanel.RightOf)" Value="Control1"/>
<Setter Target="TimestablesControl.(RelativePanel.AlignRightWithPanel)" Value="False"/>
<Setter Target="TimestablesControl.(RelativePanel.AlignLeftWithPanel)" Value="True"/>
</VisualState.Setters>
其中 "Control1" 是您要放置在 TimestablesControl 左侧的控件的 x:Name。
我试图在视觉状态下 VisualState.Setters 中通过 XAML 更改控件的 RelativePanel 附加属性,但属性没有改变,所以我创建了一个依赖项 属性 通过代码隐藏进行测试,两者都不是。
有什么方法可以刷新到一组新的值,例如:
<VisualState.Setters>
<Setter Target="TimestablesControl.RelativePanel.RightOf" Value=""/>
<Setter Target="TimestablesControl.RelativePanel.AlignRightWithPanel" Value="false"/>
<Setter Target="TimestablesControl.RelativePanel.AlignLeftWithPanel" Value="true"/>
</VisualState.Setters>
并使视图更多'responsive'?
要更改 Setter.Target 中附加属性的值,请使用此格式:
TargetObjectXName.(ClassName.AttachedPropertyName)
在你的情况下:
<VisualState.Setters>
<Setter Target="TimestablesControl.(RelativePanel.RightOf)" Value="Control1"/>
<Setter Target="TimestablesControl.(RelativePanel.AlignRightWithPanel)" Value="False"/>
<Setter Target="TimestablesControl.(RelativePanel.AlignLeftWithPanel)" Value="True"/>
</VisualState.Setters>
其中 "Control1" 是您要放置在 TimestablesControl 左侧的控件的 x:Name。