
In order to change the style of the screentip of the CollapsedRegionQuickInfoProvider i had to copy this class. Maybe you can add a virtual method in the CollapsedRegionQuickInfoProvider so we just override this with our own content control?
Something like this?
Something like this?
session.Content = this.GetSessionContent(text);
// Open the session
session.Open(view, snapshotRange.TextRange);
return true;
}
return false;
}
public virtual object GetSessionContent(string text) {
return new StatNeth.Blaise.IDE.Shared.Controls.ToolTipContent(text);
}