gpt4 book ai didi

xaml - 如何更改 Windows 应用程序中的 RelativePanel 附加属性?

转载 作者:行者123 更新时间:2023-12-04 14:26:50 24 4
gpt4 key购买 nike

我试图通过 XAML 在 VisualState.Setters 中的 Visual State 中更改控件的 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>

并使 View 更具“响应性”?

最佳答案

要更改 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。

关于xaml - 如何更改 Windows 应用程序中的 RelativePanel 附加属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29326485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com