DependencyObjectType.FromSystemType(Type) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne une DependencyObjectType valeur qui représente un type système donné (CLR).
public:
static System::Windows::DependencyObjectType ^ FromSystemType(Type ^ systemType);
public static System.Windows.DependencyObjectType FromSystemType (Type systemType);
static member FromSystemType : Type -> System.Windows.DependencyObjectType
Public Shared Function FromSystemType (systemType As Type) As DependencyObjectType
Paramètres
- systemType
- Type
Type système (CLR) à convertir.
Retours
Qui DependencyObjectType représente le type de système (CLR).
Exemples
L’exemple suivant appelle FromSystemType , en créant une DependencyObjectType fonction basée sur le type de la Window classe.
DependencyObjectType dt =
DependencyObjectType.FromSystemType(typeof(Window));
Dim dt As DependencyObjectType = DependencyObjectType.FromSystemType(GetType(Window))
Remarques
Chacun DependencyObject gère une DependencyObjectType propriété qui retourne un DependencyObjectType, mais cela nécessite une instance particulière DependencyObject . Vous pouvez utiliser cette méthode utilitaire statique si vous n’avez pas encore d’instance DependencyObject et si vous avez besoin d’un DependencyObjectType.