如何在wrappanel中设置两个对齐方式
我怎样才能得到如下图所示的包装板?两个按钮< >文本块向左对齐,文本框向右对齐,当我调整窗口宽度时,文本框自动换行。
"">
How can I get a wrappanel like the pics below? The two button < > and textblock align to left, and the textbox align to right, when I resize width of windows, the textbox auto wrap to new line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种快速但肮脏的方法。
然后在 WrapPanel_SizeChanged 处理程序中,您只需使 DataTextBlock 尽可能宽 - 与面板宽度减去搜索文本框的宽度一样。
Here is a quick and dirty way of doing it.
Then in your your WrapPanel_SizeChanged handler you simply make the DataTextBlock as wide as possible - as wide as the panel less the width of the Search TextBox.