Skip to content

Commit

Permalink
Mac/WinForms/Wpf: Wire up DataObject.NativeHandle
Browse files Browse the repository at this point in the history
This allows better interop with native code
  • Loading branch information
cwensley committed Aug 29, 2023
1 parent 8fe90bb commit 3c18bd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Eto.Mac/Forms/DataObjectHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public abstract class DataObjectHandler<TWidget, TCallback> : WidgetHandler<NSPa
{
nint _changeCount;

public override IntPtr NativeHandle => Control.Handle;

void ClearIfNeeded()
{
if (Control.ChangeCount != _changeCount)
Expand Down
2 changes: 2 additions & 0 deletions src/Eto.Wpf/Forms/DataObjectHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ public abstract class DataObjectHandler<TWidget, TCallback> : WidgetHandler<sw.D

public virtual sw.IDataObject ReadingDataObject => Control;

public override IntPtr NativeHandle => Marshal.GetComInterfaceForObject(Control, typeof(System.Runtime.InteropServices.ComTypes.IDataObject));

public DataObjectHandler()
{
}
Expand Down

0 comments on commit 3c18bd3

Please sign in to comment.