我想使用WPF在scrollviewer控件中创建一个复选框数组
我有一个字符串列表,我想将其转换为滚动查看器控件中的复选框控件。我该怎么做?有什么想法吗?该列表由课程组成,我想将其设置为复选框,以便学生可以选择其中的一些课程。
I have a list of strings and I want to convert it to checkboxes control in scrollviewer control. How can I do this? Any ideas? The list consists of courses and I want to make it as checkboxes so student can choose some of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XAML 部分:
代码隐藏部分:
XAML Part :
Code-behind part :
带有复选框作为其项目的列表框控件适合您吗?
这是我为复选框列表编写的 WPF Xaml 代码的一部分:
Would a listbox control with Checkbox as its items work for you?
This is part of a WPF Xaml code that I wrote for a checkbox list:
您需要将字符串集合绑定为
ListBox
的ItemsSource
并将ListBox.ItemTemplate
设置为DataTemplate
其中包括一个复选框。例如,请参阅 WPF ListBoxItem 选择问题。
You need to bind the collection of strings as the
ItemsSource
of aListBox
and setListBox.ItemTemplate
to aDataTemplate
that includes a checkbox.For example, see WPF ListBoxItem selection problem.