OSFeature.LayeredWindows フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
レイヤード トップレベル ウィンドウ機能を表します。 このフィールドは読み取り専用です。
public: static initonly System::Object ^ LayeredWindows;
public static readonly object LayeredWindows;
staticval mutable LayeredWindows : obj
Public Shared ReadOnly LayeredWindows As Object
フィールド値
例
次の例では、現在のシステムが階層化されたウィンドウをサポートしているかどうかを判断します。 基底クラス メソッド IsPresent は、 を検索する機能として で LayeredWindows 呼び出されます。 結果がテキスト ボックスに表示されます。 このコードは、 textBox1
がインスタンス化され、フォームに配置されていることを前提としています。
private:
void LayeredWindows()
{
// Gets the version of the layered windows feature.
Version^ myVersion = OSFeature::Feature->GetVersionPresent(
OSFeature::LayeredWindows );
// Prints whether the feature is available.
if ( OSFeature::Feature->IsPresent( OSFeature::LayeredWindows ) )
{
textBox1->Text = "Layered windows feature is installed.";
}
else
{
textBox1->Text = "Layered windows feature is not installed.";
}
}
private void LayeredWindows() {
// Gets the version of the layered windows feature.
Version myVersion =
OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows);
// Prints whether the feature is available.
if (OSFeature.Feature.IsPresent(OSFeature.LayeredWindows))
textBox1.Text = "Layered windows feature is installed.";
else
textBox1.Text = "Layered windows feature is not installed.";
}
Private Sub LayeredWindows()
' Gets the version of the layered windows feature.
Dim myVersion As Version = _
OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows)
' Prints whether the feature is available.
If OSFeature.Feature.IsPresent(OSFeature.LayeredWindows) Then
textBox1.Text = "Layered windows feature is installed."
Else
textBox1.Text = "Layered windows feature is not installed."
End If
End Sub
注釈
階層化されたウィンドウは、オペレーティング システムによって透明または半透明にすることができます。 階層化されたウィンドウのサポートは、Windows 2000 で最初に導入されました。
階層化されたウィンドウ機能がインストールされているかどうかを確認するには、 プロパティをFeature使用して、検索する機能として を使用LayeredWindowsして基本クラス メソッドIsPresentを呼び出します。
または、検索する機能として を使用して メソッドLayeredWindowsを呼び出GetVersionPresentして、機能がインストールされているかどうかを確認チェック。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET