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. } }
.NET Framework のセキュリティ
プラットフォーム
バージョン情報
参照Weblioに収録されているすべての辞書からBalloonChangedEventArgs.Visible プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からBalloonChangedEventArgs.Visible プロパティ
を検索
- BalloonChangedEventArgs.Visible プロパティのページへのリンク