c# - DrawToolTipEventArgs graphics property read only and change tooltip location -
I have made a graphic component that your tooltip-style pop. I use these events have:
private void Tultiptekst_ Draw (object sender, DrawToolTipEventArgs e) private void ToolTipText_Popup (object sender, PopupEventArgs e)
When mouse far down below, is not the tooltip visible because it is outside the visible screen area, so I want to show it in the left and / or upper Mauspointr position.
Txt_Document parameters tooltip DrawToolTipEventArgs e only read certain properties (such as e. Graphics).
I tried:
e.Graphics.TranslateTransform (-50, -50);
But its "move" tooltip content is not tooltip only.
I really j ...
I "paint" tooltip information and lines, e. Graphics. Using the DRASTRING ...
Comments
Post a Comment