问题标签 [balloon-tip]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
.net - 为什么屏幕锁定时气球提示会延迟?
NotifyIcon.ShowBalloonTip()
当某个事件发生时,我编写的应用程序会显示一个气球提示(使用)。这也可能在系统锁定时发生。
在这种情况下,气球提示在解锁后不会立即显示或根本不显示 - 这两种情况都很好并且有意义。但是,它会在一段时间后显示 - 有时超过半小时。
这种行为非常烦人,我想知道是否有办法阻止它,除了在显示气球提示之前检查屏幕是否被锁定。
c# - C# - Windows 2000 BalloonTip 事件解决方法
我一直在寻找解决方法,但除了“让他们点击 NotifyIcon”之外什么也没找到。
Windows 2000 显然不支持 BalloonTip 事件,但我需要一种方法来检测气球提示何时被单击或关闭。所以我在想是否有办法让我的程序知道当前是否显示了气球提示,然后我可以创建一个计时器来检查气球提示是否不再显示。也许是这样的:
有谁知道这样做的方法?或者也许有更好的解决方法?谢谢你的帮助。
c# - 如何在文本框上显示气球提示?
我有一个使用 XAML 和 MVVM 的 C# WPF 应用程序。我的问题是:如何在用户输入的一些无效数据的文本框上方显示气球工具提示?
我想为此使用 Microsoft 的本机气球控件。我将如何在我的应用程序中实现这一点?
c# - 如何在 C# 中的特定标签处创建工具提示点?
在我的应用程序中,我想使用工具提示指向标签以引起用户注意:
问题是气球没有指向指定的标签。我该怎么办?
qt - Qt 的气球提示
在我的 Qt 应用程序中,我想使用Windows 用户体验指南中所示的气球/气球提示(不是系统托盘气球)。
Qt 支持吗?我什么也没找到。是否有一个开源库(Qxt 没有)?自己创建它的最佳方法是什么?
c++builder - How to get the BalloonHint size?
I need to position a TBalloonHint
at the lower left corner, just above the taskbar.
To be able to calculate the position I need to know the Height and Width of the BalloonHint window.
I can't find any functions or properties that will tell me this and what I understand, a BalloonHint resize itself depending on the content. So I can't calculate with a fixed height and width either.
Well, the only one I found was SetHintSize()
, but it needs a TCustomHintWindow
and I have no clue of how to set it up properly.
Can someone please show me an example of how to either create a custom hint or get the size of the TBalloonHint.
Thanks in advance.
c# - Is it bad to create an object twice from 2 different classes?
I have a main form where when a user clicks a button it brings up a balloon tip. The balloon tip is an object instantiated within my Main form class from my BalloonTip class. I then have a second form for settings. When the user clicks something in the settings form a balloon tip occurs as well. I currently have a balloontip object instantiated in my Main class as well as my SettingsForm class. My two questions are:
- Is there a more appropriate way to deal with this type of situation?
- If creating an object twice 1 in each class, will it cause any kind of ambiguity in the compiler if the objects have the same name (i.e. objectBalloon)?
c# - 我可以使用一个类的气球提示,而 NotifyIcon 位于不同的类中吗?
我有我的主表单,其中附有一个 NotifyIcon 用于气球提示。我有一个单独的 BalloonTip 类,它进行一些处理以确定进入气球的内容。如何在 BalloonTip 类的主窗体/类中使用 notifyIcon?
编辑:我不确定如何通过引用传递通知图标
有什么建议么?
c# - 如何防止气球提示堆积?
我的项目基于计时器运行一个事件。每次运行事件时,它都会显示一个气球提示 1 秒。如果显示器进入屏幕保护程序并且程序继续在后台运行,则事件正确发生,但是当显示器从屏幕保护程序中恢复时,它将显示自从屏幕保护程序激活以来抛出的每个气球提示。有没有办法防止这种情况?我想也许会在 1 秒后处理掉气球,但不确定。
.net - 如何在通知区域创建丰富的工具提示和丰富的气球
我一直在想,每当你调用类的ShowBalloonTip
方法时NotifyIcon
,你会得到一个像这样的气球工具提示:
图 1:标准气球工具提示
某些应用程序和 Microsoft 产品能够显示的不仅仅是那些“简单”的气球提示。
以下是一些示例:
图 2:Windows 更新气球工具提示
(来源:microsoft.com)
图 3:硬件驱动程序安装气球工具提示
图 4:硬件移除工具提示(程序:USB 安全移除)
仔细查看图 2、3 和 4 会发现它们不是标准的气球工具提示!
Fig2具有不同的形状,可能来自设置Region
属性。它还有一个比标准ToolTipIcon大得多的自定义图标。
Fig3使用标准形状(我认为),但它有一个自定义图标,不用说它大于默认的ToolTipIcon大小。
Fig4使用标准的ToolTipIcon,但它具有不同的形状。
我的问题是如何创建在 .NET 的通知区域中看到的任何“丰富”气球工具提示?我可以处理 WinAPI 以及它可以产生必要的输出。