带有标签问题的 .Net Maui Collectionview 框架
.Net Maui Collectionview frame with label issue
我想知道是否有其他人在使用最新的 .Net maui 预览版(版本 17.2.0 预览版 1.0)时遇到此问题
<CollectionView ItemsSource="{Binding EventList}" x:Name="Events_CollectionView" ItemsLayout="VerticalList" SelectionMode="Single">
<CollectionView.ItemTemplate>
<DataTemplate>
<Frame>
<StackLayout Margin="0,0,0,0">
<Label Text="{Binding Seconds}" FontSize="35" FontAttributes="Bold" TextColor="White" HorizontalOptions="End"/>
</StackLayout>
</Frame>
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>
这显示我倒计时的秒数并且每秒更新一次。结果:
您可以看到屏幕的边缘以及截断的地方。
下面是一个例子,当框架被移除时,数据模板中只留下堆栈布局:
编辑:
它似乎不仅适用于框架,而且当我在 collectionview 中的堆栈布局内部有一个堆栈布局时,它似乎会产生类似的结果。
好像是给Label加了宽度要求才可以显示全文
我想知道是否有其他人在使用最新的 .Net maui 预览版(版本 17.2.0 预览版 1.0)时遇到此问题
<CollectionView ItemsSource="{Binding EventList}" x:Name="Events_CollectionView" ItemsLayout="VerticalList" SelectionMode="Single">
<CollectionView.ItemTemplate>
<DataTemplate>
<Frame>
<StackLayout Margin="0,0,0,0">
<Label Text="{Binding Seconds}" FontSize="35" FontAttributes="Bold" TextColor="White" HorizontalOptions="End"/>
</StackLayout>
</Frame>
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>
这显示我倒计时的秒数并且每秒更新一次。结果:
您可以看到屏幕的边缘以及截断的地方。
下面是一个例子,当框架被移除时,数据模板中只留下堆栈布局:
编辑: 它似乎不仅适用于框架,而且当我在 collectionview 中的堆栈布局内部有一个堆栈布局时,它似乎会产生类似的结果。
好像是给Label加了宽度要求才可以显示全文