如何在 MFC SDI 应用程序中将控件设置为与视图右对齐
我创建了一个MFC SDI应用程序,并且视图派生自CFormView,因此我可以在对话框上放置一些控件。我在对话框的右侧放置了一个组框,并在组框内放置了一些其他控件,例如编辑框等。
我想要的是当我调整视图大小时,组框和内部的控件与对话框右对齐,只需就像C#中的以下行为:将groupbox的anchor属性设置为“Right”
I have created a MFC SDI application, and the view is derived from CFormView, so i can put some controls on the dialog. I have put a groupbox at the right side of the dialog and put some other controls inside the groupbox, such as edit box etc.
What i want is the groupbox and the controls inside right aligned with the dialog when i am resizing the view, just like the followingbehavior in C#: set the anchor property of groupbox to be "Right"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EasySize 是我想要的
The EasySize is what i want