3 changed files with 19 additions and 2 deletions
@ -0,0 +1,18 @@ |
|||||
|
// Copyright (c) The Avalonia Project. All rights reserved.
|
||||
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
||||
|
using Avalonia.Controls.Primitives.PopupPositioning; |
||||
|
using Avalonia.Platform; |
||||
|
|
||||
|
namespace Avalonia.Native |
||||
|
{ |
||||
|
class OsxManagedPopupPositionerPopupImplHelper : ManagedPopupPositionerPopupImplHelper |
||||
|
{ |
||||
|
public OsxManagedPopupPositionerPopupImplHelper(IWindowBaseImpl parent, MoveResizeDelegate moveResize) : base(parent, moveResize) |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
public override Point TranslatePoint(Point pt) => pt; |
||||
|
|
||||
|
public override Size TranslateSize(Size size) => size; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue