WPF combox 绑定checkbox(多选已经实现), 当在Selecte ComboboxItem而非Check的时候,显示checkbox。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF combox 绑定checkbox(多选已经实现), 当在Selecte ComboboxItem而非Check的时候,显示checkbox。相关的知识,希望对你有一定的参考价值。
问题就是combox下拉列表中选择的不是checkbox,combox显示的是checkbox.
参考技术A protected void Page_Load(object sender, EventArgs e)CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
void chk_CheckedChanged(object sender, EventArgs e)
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
if (ctl is CheckBox)
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
参考技术B 是否你想把选中项的名称集合显示在结果里面?
elementUI多选框获取值
elementUI种的多选框和单选框差不多,
(1)el-checkbox-group里绑定一个数组
(2)el-checkbox-group绑定一个方法获取值
(3)for循环选项,绑定key,label
(4)el-checkbox里还可以绑定disabled和checked
例子:
<template> <div> <el-checkbox-group v-model="test" @change="getValue()"> <el-checkbox v-for="(item,i) in items" :key="i" :label="item.content" :disabled="item.disabled" :checked="item.checked"></el-checkbox> </el-checkbox-group> </div> </template> <script> export default name: "HelloWorld", data() return test:[], // 默认选项,要在el-checkbox-group里绑定一个空数组 items:[ id:0,content:"选项一",disabled:false,checked:true, id:1,content:"选项二",disabled:true,checked:false, id:2,content:"选项三",disabled:false,checked:false, ] ; , methods: getValue() console.log(this.test) , ; </script> <style lang="css" scoped> </style>
以上是关于WPF combox 绑定checkbox(多选已经实现), 当在Selecte ComboboxItem而非Check的时候,显示checkbox。的主要内容,如果未能解决你的问题,请参考以下文章
WPF DataGrid CheckBox 多选 反选 全选
WPF DataGrid CheckBox 多选 反选 全选