PropertyTranslator 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為主控制項的對應屬性提供轉譯函式。
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)
參數
- host
- Object
其屬性正受到對應的主控制項。 主控制項可能是 WindowsFormsHost,或是 ElementHost。
- propertyName
- String
正在轉譯之屬性的名稱。
- value
- Object
屬性的新值。
備註
類別 PropertyTranslator 會 PropertyMap 使用委派來實作Windows Forms與 WPF 之間的屬性對應。 如需詳細資訊,請參閱 Windows Form 和 WPF 屬性對應。
擴充方法
GetMethodInfo(Delegate) |
取得表示特定委派所代表之方法的物件。 |