共用方式為


LampArrayBitmapEffect.BitmapRequested 事件

定義

系統觸發的事件,表示應該提供新的影像給效果。

// 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) 

事件類型

範例

LampArray 範例

示範如何使用 Windows.Devices.LightsWindows.Devices.Lights.Effects API 來控制周邊裝置的 RGB 光源。

AutoRGB 範例

示範如何從桌面畫面擷取單一代表性色彩,並用它來在連線的 RGB 裝置上光源 LED 燈。

備註

  • 一旦播放清單啟動效果,它就會立即觸發 BitmapRequested 事件。
  • 如果播放清單暫停效果,它會暫時停止進一步的事件觸發程式。 當播放清單再次啟動時,將會繼續。
  • 如果播放清單停止效果,在播放清單再次啟動之前,不會再發生任何事件觸發程式。
  • 事件會在 Duration 過期時觸發最後的時間。 呼叫端應該使用此選項,在效果完成之前設定任何最終狀態。

未定義向這個事件註冊的多個處理常式行為。

適用於

另請參閱