Guest User

Untitled

a guest
Jul 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. private void ddlOrganization_DrawItem(object sender, DrawItemEventArgs e)
  2. {
  3. string text = ddlOrganization.GetItemText(ddlOrganization.Items[e.Index]);
  4. e.DrawBackground();
  5. using (SolidBrush br = new SolidBrush(e.ForeColor))
  6. {
  7. e.Graphics.DrawString(text, e.Font, br, e.Bounds);
  8. }
  9. if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
  10. {
  11. toolTip1.Show(text, ddlOrganization, e.Bounds.Right, e.Bounds.Bottom);
  12. }
  13. e.DrawFocusRectangle();
  14. }
Add Comment
Please, Sign In to add comment