本文整理汇总了C#中ExportHandle类的典型用法代码示例。如果您正苦于以下问题:C# ExportHandle类的具体用法?C# ExportHandle怎么用?C# ExportHandle使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ExportHandle类属于命名空间,在下文中一共展示了ExportHandle类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExportEventComboChangePosition
public ExportEventComboChangePosition( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportComboBoxEvent_DelegateComboChangePosition( mDelegate );
}
示例2: ExportComboBoxEvent_DelegateComboChangePosition
public static extern void ExportComboBoxEvent_DelegateComboChangePosition(ExportHandle _delegate);
示例3: ExportMultiListBoxEvent_DelegateListSelectAccept
public static extern void ExportMultiListBoxEvent_DelegateListSelectAccept( ExportHandle _delegate );
示例4: ExportWidgetEvent_DelegateMouseButtonDoubleClick
private static extern void ExportWidgetEvent_DelegateMouseButtonDoubleClick( ExportHandle _delegate );
示例5: ExportEventMouseButtonReleased
public ExportEventMouseButtonReleased( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportWidgetEvent_DelegateMouseButtonReleased( mDelegate );
}
示例6: ExportWidgetEvent_DelegateKeyButtonReleased
private static extern void ExportWidgetEvent_DelegateKeyButtonReleased( ExportHandle _delegate );
示例7: ExportWidgetEvent_DelegateKeySetFocus
private static extern void ExportWidgetEvent_DelegateKeySetFocus( ExportHandle _delegate );
示例8: ExportEventMouseWheel
public ExportEventMouseWheel( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportWidgetEvent_DelegateMouseWheel( mDelegate );
}
示例9: ExportWidgetEvent_DelegateMouseWheel
private static extern void ExportWidgetEvent_DelegateMouseWheel( ExportHandle _delegate );
示例10: ExportEventMouseLostFocus
public ExportEventMouseLostFocus( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportWidgetEvent_DelegateMouseLostFocus( mDelegate );
}
示例11: ExportWidgetEvent_DelegateMouseLostFocus
private static extern void ExportWidgetEvent_DelegateMouseLostFocus( ExportHandle _delegate );
示例12: ExportScrollBarEvent_DelegateScrollChangePosition
public static extern void ExportScrollBarEvent_DelegateScrollChangePosition(ExportHandle _delegate);
示例13: ExportEventListSelectAccept
public ExportEventListSelectAccept( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportMultiListBoxEvent_DelegateListSelectAccept( mDelegate );
}
示例14: ExportEventListChangePosition
public ExportEventListChangePosition( ExportHandle _delegate )
{
mDelegate = _delegate;
ExportMultiListBoxEvent_DelegateListChangePosition( mDelegate );
}
示例15: ExportWidgetEvent_DelegateChangeProperty
private static extern void ExportWidgetEvent_DelegateChangeProperty( ExportHandle _delegate );