简体   繁体   中英

equivalent to title attribute of anchor html tag in comobobox

I say something like:

在此输入图像描述

in this example was generated using HTML .

<a href="#" title="The title..">#</a>

what's the quick and best way to do something like? there an equivalent in combobox?

Thanks in advance.

You would use the ToolTip class:

ToolTip T = new ToolTip();
T.SetToolTip(yourComboBox, "The title...");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM