BalloonChangedEventArgs.Visible プロパティ
アセンブリ: Microsoft.WindowsCE.Forms (microsoft.windowsce.forms.dll 内)

Notification の Visible プロパティが true の場合は、true。それ以外の場合は、false。


バルーンが表示されているときに、アプリケーションに機能を追加するためのコードを追加する場所を次のコード例に示します。このコード例は、Notification クラスのトピックで取り上げているコード例の一部分です。
' You can use the BalloonChanged event ' created by tracking each time the notification is made visible. Private Sub OnBalloonChanged(obj As Object, _ balevent As BalloonChangedEventArgs) Handles Notification1.BalloonChanged If balevent.Visible = True Then ' You can add code here to add ' functionality such as user interface ' changes that should occur when ' the notification is displayed. End If End Sub
// You can use the BalloonChanged event // created by tracking each time the notification is made visible. private void OnBalloonChanged(object obj, BalloonChangedEventArgs balevent) { if (balevent.Visible == true) { // You can add code here to add // functionality such as user interface // changes that should occur when // the notification is displayed. } }




- BalloonChangedEventArgs.Visible プロパティのページへのリンク