gpt4 book ai didi

xaml - 是否可以绑定(bind) RelativeLayout 约束?

转载 作者:行者123 更新时间:2023-12-05 07:47:04 25 4
gpt4 key购买 nike

我正在使用以下 XAML 代码在 ListView 中呈现一些数据:

<ListView x:Name="myListView"
ItemsSource="{Binding myData}"
RowHeight="230">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<RelativeLayout Padding="1">
<StackLayout x:Name="stackLayoutTitle"
Padding="5"
Orientation="Vertical"
VerticalOptions="EndAndExpand"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width}"
RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.6}">
<Label Text="{Binding myText}"
FontSize="Medium"
FontAttributes="Bold"
TextColor="Black">
</Label>
</StackLayout>
</RelativeLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

数据呈现正常。现在,我想做的是根据一些计算对 RelativeYConstranit 的 Factor 属性使用 strip 来定位相应的 StackLayout。像这样的东西(查看 Factor 属性):

RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor={Binding someValue}}"

但是,在运行应用程序时出现错误。

有谁知道是否可以为此使用绑定(bind)表达式?

谢谢。

最佳答案

我有这个问题。 “因素”不是 BindingProperty。所以现在是不可能的。

关于xaml - 是否可以绑定(bind) RelativeLayout 约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40098891/

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