LockScreen クラス

定義

ロック画面の背景として使用される全画面表示イメージを管理するためのプロパティとメソッドを提供します。

public ref class LockScreen abstract sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.System.UserProfile.UserProfileLockScreenContract, 65536)]
class LockScreen final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.System.UserProfile.UserProfileLockScreenContract), 65536)]
public static class LockScreen
Public Class LockScreen
継承
Object Platform::Object IInspectable LockScreen
属性

Windows の要件

デバイス ファミリ
Windows Desktop Extension SDK (10.0.10240.0 で導入)
API contract
Windows.System.UserProfile.UserProfileLockScreenContract (v1.0 で導入)

この例では、このクラスの SetImageFileAsync メソッドを使用して、ロック画面イメージを設定します。 変数 ファイル は、以前に割り当てられたイメージであると見なされます。

Windows.System.UserProfile.LockScreen.SetImageFileAsync(file);
Windows::Foundation::IAsyncAction MainPage::ExampleCoroutineAsync(Windows::Storage::StorageFile const& file)
{
    co_await Windows::System::UserProfile::LockScreen::SetImageFileAsync(file);
}
using namespace Windows::System::UserProfile;
LockScreen::SetImageFileAsync(file)

この例では、このクラスの GetImageStream メソッドを使用して、ロック画面イメージを取得します。

IRandomAccessStream imageStream = LockScreen.GetImageStream();
Windows::Storage::Streams::IRandomAccessStream imageStream{
    Windows::System::UserProfile::LockScreen::GetImageStream()
};
auto imageStream = Windows::System::UserProfile::LockScreen::GetImageStream();

プロパティ

OriginalImageFile

現在のロック画面イメージを取得します。

メソッド

GetImageStream()

現在のロック画面イメージをデータ ストリームとして取得します。

RequestSetImageFeedAsync(Uri)

ロック画面のスライドショーとして使用する RSS 画像フィードを登録します。 (Windows 8.1 のみ)

SetImageFileAsync(IStorageFile)

StorageFile オブジェクトからロック画面イメージを設定します。

SetImageStreamAsync(IRandomAccessStream)

データ ストリームからのロック画面イメージを設定します。

TryRemoveImageFeed()

ロック画面のスライドショーで使用されている画像フィードの登録を解除し、スライドショーを停止します。 (Windows 8.1 のみ)

適用対象

こちらもご覧ください