本文介绍了使用EPPlus创建复选框的下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用EPPlus()在以下位置创建Excel文件我的ASP.NET应用程序。我想知道是否有人知道是否可以在一个单元格中创建带有复选框的下拉列表。我已经检查了文档,但到目前为止没有发现任何东西。我也尝试了Google搜索,但是还没有找到正确方向的东西。

I am using EPPlus (http://epplus.codeplex.com/) to create Excel files in my ASP.NET application. I was wondering if anyone knows if it's possible to create a dropdownlist with checkboxes in one cell. I've checked the documentation, but found nothing so far. I've also tried Googling it but haven't found anything in the right direction yet.

他们论坛上的这个问题实际上是对我所要表达的一个很好的证明。寻找,但尚未收到任何答案:

This question on their forum is actually a pretty good demonstration of what I'm looking for, but it hasn't received any answers: http://epplus.codeplex.com/discussions/585879

有人碰巧有任何想法,可以指出正确的方向吗?

Does anyone happen to have any ideas and can point me in the right direction?

推荐答案

您可以使用:

var validationCell = sheet.DataValidations.AddListValidation("A1");
validationCell.Formula.Values.Add("a");
validationCell.Formula.Values.Add("b");
validationCell.Formula.Values.Add("c");
...

,但您只能选择一个值。我认为Excel不支持多个值。

but you can choose only one single value. I think that multiple values are not supported by excel.

这篇关于使用EPPlus创建复选框的下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 16:28