Ensure containers show up in the menu when they are created

This commit is contained in:
TheXamlGuy
2024-05-12 17:09:59 +01:00
parent 4171a31f85
commit 5292896e13
6 changed files with 33 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
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();
}
}