Notification.BalloonChanged イベント
アセンブリ: Microsoft.WindowsCE.Forms (microsoft.windowsce.forms.dll 内)

Dim instance As Notification Dim handler As BalloonChangedEventHandler AddHandler instance.BalloonChanged, handler
public: event BalloonChangedEventHandler^ BalloonChanged { void add (BalloonChangedEventHandler^ value); void remove (BalloonChangedEventHandler^ value); }


このイベントを使用して、通知が作成されるたびに確認するコード例を次に示します。このコード例は、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. } }




Weblioに収録されているすべての辞書からNotification.BalloonChanged イベントを検索する場合は、下記のリンクをクリックしてください。

- Notification.BalloonChanged イベントのページへのリンク