PropertyTranslator Delegato
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Fornisce una funzione di conversione per la proprietà mappata del controllo host.
public delegate void PropertyTranslator(System::Object ^ host, System::String ^ propertyName, System::Object ^ value);
public delegate void PropertyTranslator(object host, string propertyName, object value);
type PropertyTranslator = delegate of obj * string * obj -> unit
Public Delegate Sub PropertyTranslator(host As Object, propertyName As String, value As Object)
Parametri
- host
- Object
Controllo host di cui viene mappata la proprietà. Il controllo host può essere o WindowsFormsHost o ElementHost.
- propertyName
- String
Nome della proprietà che viene tradotta.
- value
- Object
Nuovo valore della proprietà.
Commenti
Il PropertyTranslator delegato viene usato dalla classe per implementare il PropertyMap mapping delle proprietà tra Windows Forms e WPF. Per altre informazioni, vedere Mapping di proprietà di Windows Form e WPF.
Metodi di estensione
GetMethodInfo(Delegate) |
Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato. |