作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想创建一个控件,允许用户使用复选框从下拉列表中选择多个选项。我在 Google 上搜索过,我得到了一些链接,例如
http://code.msdn.microsoft.com/windowsapps/Multi-Select-ComboBox-in-cfbf1e22/view/SourceCode#content .
我发现这篇文章很有用,但我不能在每个应用程序中使用此控件,因为 ItemsSource 类型可能会在每个应用程序中发生变化。我想创建通用控件,它将被任何可能具有不同 ItemsSource 的应用程序使用。如何创建可在任何应用程序中使用的通用控件?我想为此控件创建 DLL 并希望在所有应用程序中使用它。
最佳答案
给你一个例子
<ComboBox xmlns:sys="clr-namespace:System;assembly=mscorlib">
<ComboBox.Resources>
<Style TargetType="ComboBoxItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ComboBoxItem">
<CheckBox>
<ContentPresenter />
</CheckBox>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ComboBox.Resources>
<sys:String>item 1</sys:String>
<sys:String>item 2</sys:String>
<sys:String>item 3</sys:String>
<sys:String>item 4</sys:String>
</ComboBox>
结果
关于c# - wpf中带有复选框通用控件的多选组合框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25157744/
我是一名优秀的程序员,十分优秀!