OSFeature.Feature Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém uma instância static
da classe OSFeature a ser usada para consultas de recurso. Esta propriedade é somente para leitura.
public:
static property System::Windows::Forms::OSFeature ^ Feature { System::Windows::Forms::OSFeature ^ get(); };
public static System.Windows.Forms.OSFeature Feature { get; }
static member Feature : System.Windows.Forms.OSFeature
Public Shared ReadOnly Property Feature As OSFeature
Valor da propriedade
Uma instância da classe OSFeature.
Exemplos
O exemplo a seguir consulta OSFeature o LayeredWindows recurso. A versão é verificada para ver se é null
, para determinar se o recurso está presente. O resultado é exibido em uma caixa de texto. Esse código pressupõe textBox1
que foi criado e colocado em um formulário.
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 ( myVersion != nullptr )
{
textBox1->Text = "Layered windows feature is installed.\n";
}
else
{
textBox1->Text = "Layered windows feature is not installed.\n";
}
}
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 (myVersion != null)
textBox1.Text = "Layered windows feature is installed.\n";
else
textBox1.Text = "Layered windows feature is not installed.\n";
}
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 (myVersion IsNot Nothing) Then
textBox1.Text = "Layered windows feature is installed." & _
ControlChars.CrLf
Else
textBox1.Text = "Layered windows feature is not installed." & _
ControlChars.CrLf
End If
End Sub
Comentários
Use essa static
propriedade para consultar recursos do sistema operacional. Você não pode criar uma instância dessa classe.
Para determinar a versão de um recurso, chame o GetVersionPresent método . Para determinar se um recurso ou uma versão específica está presente, chame o IsPresent método e especifique o recurso a ser buscado com os identificadores de recurso fornecidos nesta classe.