gpt4 book ai didi

c# - 禁止在 ListView 中选择项目

转载 作者:太空宇宙 更新时间:2023-11-03 18:54:26 25 4
gpt4 key购买 nike

对于我正在开发的社交网络应用程序,我正在尝试使用 ListView 显示评论,但我不希望它在单击时突出显示。

我试过用

`((ListView)sender).SelectedItem = null;` in a selected event but that still shows it being selected for a second. I need it to never show.

我还尝试将 ListView 设置为

IsEnabled="False"

还尝试将它放在 View Cell 中,但这会导致按钮和点击事件不起作用。

最佳答案

安卓:

我为 ListView 创建了一个自定义渲染器并设置了

Control.SetSelector(Android.Resource.Color.Transparent);

iOS:

我创建了一个自定义 ViewCell 渲染器并设置了

cell.SelectionStyle = UITableViewCellSelectionStyle.None;

引用资料:

安卓:Xamarin.Forms untappable ListView (remove selection ripple effect)

iOS:https://montemagno.com/adding-a-disclosure-indicator-accessory-to/

关于c# - 禁止在 ListView 中选择项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48728729/

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