InfraredTorchControl.SupportedModes 屬性

定義

SupportedModes 屬性可用來找出基礎結構 LED 支援的模式。

public:
 property IVectorView<InfraredTorchMode> ^ SupportedModes { IVectorView<InfraredTorchMode> ^ get(); };
IVectorView<InfraredTorchMode> SupportedModes();
public IReadOnlyList<InfraredTorchMode> SupportedModes { get; }
var iVectorView = infraredTorchControl.supportedModes;
Public ReadOnly Property SupportedModes As IReadOnlyList(Of InfraredTorchMode)

屬性值

支援的 InfraredTorchModes唯讀清單。

範例

using Windows.Media.Capture;

MediaCapture mediaCapture = new MediaCapture();

public MainPage()
{
    this.InitializeComponent();
}

protected override async void OnNavigatedTo(NavigationEventArgs e)
{
    await mediaCapture.InitializeAsync();

    // Preview is Windows.UI.Xaml.Controls.CaptureElement defined in XAML file
    // and used to render camera preview
    Preview.Source = mediaCapture;
    await mediaCapture.StartPreviewAsync();

    if (mediaCapture.VideoDeviceController.InfraredTorchControl.IsSupported)
    {
        Debug.WriteLine("IR torch supported");

        IEnumerable<InfraredTorchMode> supportedModes = 
            mediaCapture.VideoDeviceController.InfraredTorchControl.SupportedModes;
        foreach (InfraredTorchMode supportedMode in supportedModes)
        {
            Debug.WriteLine($"This infrared LED supports mode {supportedMode}");
        }
    }
    else
    {
        Debug.WriteLine("IR torch NOT supported");
    }
}

適用於

另請參閱