GtkLabel 的一部分可点击
怎么办,只是GtkLabel的一部分有一个点击事件并调用一个函数。
我制作了一个 Twitter 客户端,女巫显示推文,我想,当推文中有 # 标签并且我单击它时,应用程序会显示一个新窗口,其中包含此 #hashtag 的搜索。我不知道该怎么做,只是 #hashtag 会调用这个事件。
How to do, that just a part of GtkLabel has a clicked event and calls a function.
I make a twitter client, witch shows tweets and i would like to, when in the tweet is a # hashtag and I click it, the application shows a new window with search of this #hashtag. and I dont know how to do that just the #hashtag would invoke this event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将可点击部分放在
标记中,并连接到
activate-link
信号。这是一个例子:
You can surround the clickable part in
<a>
tags and connect to theactivate-link
signal.Here is an example: