Xamarin.Forms - ListView 无法加载整个 ViewCell
Xamarin.Forms - ListView can not load whole ViewCell
我在 Xamarin.Forms 应用程序的 ListView 中加载 ViewCell 时遇到问题。
ViewCell 显示正确但只有一半。我试图向下滚动,但我做不到。 ListView 结束加载,但 ViewCell 旨在继续。
感谢您的回答!
看看 ListView.HasUnevenRows Property:
To automatically size row height to fit content, the developer first
sets the HasUnevenRows property to true; and, second, either leaves
RowHeight at its default value of -1, or sets it to -1 if it has been
changed.
official documentation 中有更多详细信息。
我在 Xamarin.Forms 应用程序的 ListView 中加载 ViewCell 时遇到问题。
ViewCell 显示正确但只有一半。我试图向下滚动,但我做不到。 ListView 结束加载,但 ViewCell 旨在继续。
感谢您的回答!
看看 ListView.HasUnevenRows Property:
To automatically size row height to fit content, the developer first sets the HasUnevenRows property to true; and, second, either leaves RowHeight at its default value of -1, or sets it to -1 if it has been changed.
official documentation 中有更多详细信息。