共用方式為


BalloonChangedEventArgs 類別

提供 BalloonChanged 事件的資料。

命名空間:  Microsoft.WindowsCE.Forms
組件:  Microsoft.WindowsCE.Forms (在 Microsoft.WindowsCE.Forms.dll 中)

語法

'宣告
Public Class BalloonChangedEventArgs _
    Inherits EventArgs
'用途
Dim instance As BalloonChangedEventArgs
public class BalloonChangedEventArgs : EventArgs
public ref class BalloonChangedEventArgs : public EventArgs
public class BalloonChangedEventArgs extends EventArgs

備註

只要顯示或隱藏告知,就會發生 BalloonChanged 事件。

Visible 屬性反映 Notification 上之 Visible 屬性的更新值,讓您可以追蹤顯示或隱藏告知的時間。

只有 Pocket PC 才支援此類別。

範例

下列程式碼範例會示範可將程式碼加入何處,以便在可以看到汽球提示時為應用程式新增功能。BalloonChangedEventArgs 類別包含 Visible 屬性,這個屬性反映 Notification 類別的 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.Object
  System.EventArgs
    Microsoft.WindowsCE.Forms.BalloonChangedEventArgs

執行緒安全

這個型別的任何 Public static (在 Visual Basic 中為 Shared) 成員都具備執行緒安全。並非所有的執行個體成員都是安全執行緒。

平台

Windows Mobile for Pocket PC

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Compact Framework

支援版本:3.5、2.0

請參閱

參考

BalloonChangedEventArgs 成員

Microsoft.WindowsCE.Forms 命名空間

其他資源

HOW TO:傳送通知