18 lines
369 B
C#
18 lines
369 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Toolkit.UI.Controls;
|
|
|
|
public class AttachedFlyout : PopupFlyoutBase
|
|
{
|
|
protected override Control CreatePresenter()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|