WPF 数据网格中的多列显示组合框
我想创建自定义 WPF 数据网格控件,它允许在选择组合框时具有多列显示的 datagridcomboboxcolumn,这是如何实现的。请帮忙
提前致谢 卡蒂什。
I wanted to create custom WPF datagrid control, which allows to have datagridcomboboxcolumn with multicolumn display on selection of combobox, how this can be implemented. Please help
Thanks in advance
Kartheesh.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对你想问的问题有点困惑,但我认为可能是两件事之一;
您希望每列显示多列。例如,您希望每列显示两个或多个项目,例如两个复选框或文本框等。下面的代码显示绑定到对象数据提供程序的两个组合框。
或者,您可能希望每个组合框显示一个或多个列,那么这应该帮助;
WPF 中的多列组合框
一个简单的WPF 中的多列组合框
I'm a little confused to exactly what your trying to ask, but possibly I think it's either of two things;
You want a multi-column display per column. For example you want two or more items per column displayed, e.g. two checkboxes, or textboxs, etc. The following code below displays two combox boxes binded to an object data provider
Alternatively perhaps you want one or more columns per combo box, then this should help;
Multi-Column ComboBox in WPF
A Simple Multicolumn Combo Box in WPF