如何使用 WPF 在不同位置绘制控件的单独部分?
我正在尝试将 WPF UserControl 的绘图拆分到我正在编写的自定义分页面板的两个单独页面上。我想到使用 VisualBrush 来绘制控件的位。这是要走的路吗?
我想我还必须将需要在视觉上分割的控件放在一个不可见的容器中。有没有人遇到过有效的方法来做到这一点?
I'm trying to split the drawing of a WPF UserControl onto two separate pages of a custom Paged Panel that I'm writing. I thought of using a VisualBrush to draw bits of the control. Is this the way to go?
I presume I'll also have to put the controls that need to be visually split in an invisible container. Has anyone come across an effective way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有做任何像你想做的事情,但你可以尝试使用 VisualBrush 绘制到某个容器(如果你的页面是矩形的,请使用矩形)。然后,您可以使用剪切几何体来剪切您尝试在页面中显示的 UserControl 的区域。
祝你好运!
I haven't done anything like what you are trying to do, but you can try using a VisualBrush to draw to some container (say Rectangle if your pages are rectangular). You can then use a clipping geometry to clip the area of the UserControl you are trying to display in a page.
Good luck!