xaml – 如何在Windows Apps中更改RelativePanel附加属性?

前端之家收集整理的这篇文章主要介绍了xaml – 如何在Windows Apps中更改RelativePanel附加属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在可视状态的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>

并使视图更“响应”?

要在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”是x:您想要放置在TimestablesControl左侧的控件的名称.

原文链接:https://www.f2er.com/windows/363277.html

猜你在找的Windows相关文章