gpt4 book ai didi

c# - 查看 RadioButtonList 是否具有选定值的最佳方法是什么?

转载 作者:可可西里 更新时间:2023-11-01 07:55:17 25 4
gpt4 key购买 nike

我正在使用:

if (RadioButtonList_VolunteerType.SelectedItem != null)

或者怎么样:

if (RadioButtonList_VolunteerType.Index >= 0)

或者怎么样(根据 Andrew Hare 的回答):

if (RadioButtonList_VolunteerType.Index > -1)

对于可能阅读此问题的人来说,以下方法无效。正如 Keltex 指出的那样,所选值可能是空字符串。

if (string.IsNullOrEmpty(RadioButtonList_VolunteerType.SelectedValue))

最佳答案

这些都是检查选定值的所有有效且完全合法的方法。我个人认为

RadioButtonList_VolunteerType.SelectedIndex > -1

最清楚。

关于c# - 查看 RadioButtonList 是否具有选定值的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/735775/

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