如何使用代码停靠在父容器中
如何使用代码将报表查看器控件停靠到其父容器中。
How can I dock my report viewer control into its parent container, using code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用代码将报表查看器控件停靠到其父容器中。
How can I dock my report viewer control into its parent container, using code.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
设置控件的
Dock
属性 停靠到其父容器的所有侧面。例如:所有可用的对接选项均由
提供DockStyle
枚举,总结如下:Set the control's
Dock
property to dock to all sides of its parent container. For example:All of your available docking options are given by the
DockStyle
enumeration, summarized here:如果您不相信停靠,您可以响应父容器的
OnSize
事件,并根据父容器手动重新定位/调整控件大小。If you don't believe in docking, you can respond to the parent containers'
OnSize
event and reposition/resize your control manually according to the parents.