LampArrayBitmapEffect.BitmapRequested 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
系統觸發的事件,表示應該提供新的影像給效果。
// Register
event_token BitmapRequested(TypedEventHandler<LampArrayBitmapEffect, LampArrayBitmapRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void BitmapRequested(event_token const* cookie) const;
// Revoke with event_revoker
LampArrayBitmapEffect::BitmapRequested_revoker BitmapRequested(auto_revoke_t, TypedEventHandler<LampArrayBitmapEffect, LampArrayBitmapRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<LampArrayBitmapEffect,LampArrayBitmapRequestedEventArgs> BitmapRequested;
function onBitmapRequested(eventArgs) { /* Your code */ }
lampArrayBitmapEffect.addEventListener("bitmaprequested", onBitmapRequested);
lampArrayBitmapEffect.removeEventListener("bitmaprequested", onBitmapRequested);
- or -
lampArrayBitmapEffect.onbitmaprequested = onBitmapRequested;
Public Custom Event BitmapRequested As TypedEventHandler(Of LampArrayBitmapEffect, LampArrayBitmapRequestedEventArgs)
事件類型
範例
示範如何使用 Windows.Devices.Lights 和 Windows.Devices.Lights.Effects API 來控制周邊裝置的 RGB 光源。
示範如何從桌面畫面擷取單一代表性色彩,並用它來在連線的 RGB 裝置上光源 LED 燈。
備註
- 一旦播放清單啟動效果,它就會立即觸發
BitmapRequested
事件。 - 如果播放清單暫停效果,它會暫時停止進一步的事件觸發程式。 當播放清單再次啟動時,將會繼續。
- 如果播放清單停止效果,在播放清單再次啟動之前,不會再發生任何事件觸發程式。
- 事件會在 Duration 過期時觸發最後的時間。 呼叫端應該使用此選項,在效果完成之前設定任何最終狀態。
未定義向這個事件註冊的多個處理常式行為。