在C#中,你可以使用WinForms或WPF来实现复选框的选中项统计。这里我将为你提供两种方法的示例代码。
方法1:使用WinForms
CheckedListBox
控件来实现。CheckedListBox checkedListBox = new CheckedListBox();
checkedListBox.Items.Add("选项1", false); // 默认未选中
checkedListBox.Items.Add("选项2", false);
checkedListBox.Items.Add("选项3", false);
CheckedListBox
控件的CheckedItems
属性来获取选中的项,并统计选中项的数量。int checkedCount = checkedListBox.CheckedItems.Count;
方法2:使用WPF
CheckBox
控件和ItemsControl
来实现。首先,在XAML中添加CheckBox
和ItemsControl
:
<Window x:Class="WpfApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ItemsControl x:Name="checkBoxList">
<ItemsControl.ItemTemplate>
<DataTemplate>
<CheckBox Content="{Binding}" IsChecked="{Binding IsChecked, Mode=TwoWay}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</Window>
ItemsControl
。public MainWindow()
{
InitializeComponent();
List<string> items = new List<string> { "选项1", "选项2", "选项3" };
checkBoxList.ItemsSource = items;
}
int checkedCount = checkBoxList.ItemsSource.Cast<string>().Count(item => bool.Parse(checkBoxList.GetItem(item).ToString()));
这样,你就可以统计复选框列表中选中的项的数量了。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。