如何用c Sharp制作一个类似Firefox的tabcontrol?
有人知道我如何扩展 TabPage 以便在活动选项卡上有一个 X 可见,按下时关闭选项卡/询问是否应该关闭选项卡?
谢谢
Does someone know how I could extend and TabPage so that there is a X visible on an active tab, that when pressed, closes the tab /ask if the tab should be closed ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用TabControl.DrawMode属性来实现自定义绘图。 MSDN 库文章中有一个有关 DrawItem 事件处理程序的很好的示例。使用 Graphics.DrawLine() 或 DrawImage 绘制 x。使用 MouseUp 事件检测 x 上的单击。您需要 GetTabRect() 方法来找出单击了哪个选项卡。并缩小位置范围以验证它是否位于 x 附近。
Use the TabControl.DrawMode property to implement custom drawing. There's a good example of a DrawItem event handler in the MSDN Library article. Use Graphics.DrawLine() or DrawImage to draw the x. Use the MouseUp event to detect a click on the x. You'll need the GetTabRect() method to find out which tab was clicked. And narrow down the location to verify that it was near the x.