WPF 自定义控件:如何将 2 个控件合并为 1 个?
我需要创建一个 WPF 自定义控件,它将组合标签和文本框,标签位于左侧,文本框位于右侧,并排。我需要这种控制,因为我正在处理的表单都具有相同的模式:标签+要填写的字段。该控件将具有 LabelContent 属性和 Text 属性或类似的属性。
关于如何将所有这些整合在一起有什么建议吗?
谢谢
I need to create a WPF custom control that will combine a label and a textbox, the label being on the left and the textbox on the right, side by side. I need that kind of control because I'm working on forms that all have the same pattern: label + field to fill. This control would have a LabelContent property and Text property or something like that.
Any advices on how to put that all together?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想使用 UserControl 而不是 CustomControl。它旨在允许您将其他控件组合成一个可重用的控件。
You might want to use a UserControl instead of a CustomControl. It is designed to allow you to compose other controls into a single, reusable control.