一个复选框列表中有两个复选框

发布于 2024-09-07 11:24:58 字数 237 浏览 1 评论 0原文

我目前正在致力于将应用程序从访问权限转换为 C#,并且遇到了一个需要复制的奇怪控件。在访问中,有一个复选框列表,用于用户正在查看的当月,其中包含该月的每一天,旁边有两个复选框,D 和 N(表示白天和夜晚)。所以我的问题是实现这一点的最佳方法是什么。我正在考虑以编程方式创建它,并排放置两个复选框列表,但想知道是否可以将两个框放在一个列表中

June 1 [D] [N]
...
June 31 [D] [N]

I am currently working on converting an application from access to C# and have come across an odd control I need to replicate. In access there is a list of check-box's, for the current month the user is looking at, which has everyday of that month with two check-box's beside it, D and N (for day and night). So my question is what would be the best way to implement this. I am thinking of creating it programatically with two check-box lists side by side but wondering if you can put two box's in one list

June 1 [D] [N]
...
June 31 [D] [N]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老街孤人 2024-09-14 11:24:58

您可以使用 DataGridView 并创建两个其中的复选框列

You could use a DataGridView and create two CheckBoxColumns in it

妞丶爷亲个 2024-09-14 11:24:58

如果您确实想保持确切的外观和感觉,可以将两个复选框与单独的 Label 控件并排使用,然后将它们弹出 DataRepeater 为每行数据重复它们。

但是,使用

If you really want to maintain the exact look and feel, you can use two checkboxes side by side with a separate Label control, then pop them in a DataRepeater to repeat them for each row of data.

However, using a DataGridView with two checkbox columns will be much easier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文