Showing Tab ToolTips for Docking Pages #3811
|
I set the How can I do that? |
Answered by
PWagner1
Jul 10, 2026
Replies: 4 comments
|
@Krypton-Suite/reviewers Any ideas or is this a bug? |
0 replies
|
Okay, I got it working, but it's a bit fiddly: internal frmEditor()
{
InitializeComponent();
KryptonDockingWorkspace w = kryptonDockingManager.ManageWorkspace("Workspace", kryptonDockableWorkspace);
kryptonDockingManager.ManageControl("Control", kryptonPanel, w);
kryptonDockingManager.ManageFloating("Floating", this);
kryptonDockableWorkspace.Root.Children.Inserted += Children_Inserted; // <=========
kryptonDockableWorkspace.Root.Children.Removed += Children_Removed;
}
private void Children_Inserted(object sender, TypedCollectionEventArgs<System.ComponentModel.Component> e)
{
var cell = (KryptonWorkspaceCell)e.Item; // <=========
cell.ToolTips.AllowPageToolTips = true; // <=========
cell.CloseAction += WorkspaceCell_CloseAction;
} |
0 replies
|
I'd suggest opening a new feature request for this. |
0 replies
|
This is now a feature in V110. |
0 replies
Answer selected by
PWagner1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is now a feature in V110.