BalloonChangedEventArgs クラス
アセンブリ: Microsoft.WindowsCE.Forms (microsoft.windowsce.forms.dll 内)


BalloonChanged イベントは、通知を表示または非表示にするたびに発生します。
Visible プロパティは、Notification の Visible プロパティの最新の値を反映するため、通知がいつ表示または非表示にされたかを追跡できます。

バルーンが表示されているときに、アプリケーションに機能を追加するためのコードを追加する場所を次のコード例に示します。BalloonChangedEventArgs クラスには、Notification クラスの Visible プロパティの値を反映する Visible プロパティが含まれています。このコード例は、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. } }

System.EventArgs
Microsoft.WindowsCE.Forms.BalloonChangedEventArgs




- BalloonChangedEventArgs クラスのページへのリンク