Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mac/WinForms/Wpf: Wire up DataObject.NativeHandle #2548

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading