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 窗体 与 WPF 之间的属性映射。 有关详细信息,请参阅 Windows 窗体和 WPF 属性映射。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |