LockScreen 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供用來作為鎖定畫面背景之全螢幕影像的屬性和方法。
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
- 繼承
- 屬性
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) |