Silverlight 中的可写组合框
当我们更改 DropDown 属性时,如何才能像 Windows 窗体中那样更改 Silverlight ComboBox 的可写性。
How can we change a Silverlight ComboBox writable like in Windows Form when we change the DropDown property.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您可以获得的最接近的是 自动完成框
I believe the closest you can get is autocompletebox
Silverlight
中的ComboBox
没有像WPF
那样允许使用的IsReadonly
和IsEditable
属性可编辑。您必须创建一个
自定义控件
或用户控件
来模仿该行为。ComboBox
inSilverlight
does not haveIsReadonly
andIsEditable
properties likeWPF
that allow it to be editable.You will have to create a
custom control
or auser control
to mimic that behavior.