From 1321f561b52e1660a60ae672e3ee25f8465d97ea Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Thu, 7 Aug 2025 22:58:45 +1000 Subject: [PATCH] Run popover v0.1 --- .../Components/RunPopover.razor | 25 +++++++++++++++++++ src/SharpIDE.Photino/Layout/MainLayout.razor | 4 +-- 2 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 src/SharpIDE.Photino/Components/RunPopover.razor diff --git a/src/SharpIDE.Photino/Components/RunPopover.razor b/src/SharpIDE.Photino/Components/RunPopover.razor new file mode 100644 index 0000000..487089c --- /dev/null +++ b/src/SharpIDE.Photino/Components/RunPopover.razor @@ -0,0 +1,25 @@ +@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence + +
+ +
+ + @foreach(var projects in SolutionModel.AllProjects) + { + @projects.Name + } + +
+
+ + + + +
+ +@code { + [Parameter, EditorRequired] + public SharpIdeSolutionModel SolutionModel { get; set; } = null!; + + private bool _open = false; +} diff --git a/src/SharpIDE.Photino/Layout/MainLayout.razor b/src/SharpIDE.Photino/Layout/MainLayout.razor index 7beffd4..204f888 100644 --- a/src/SharpIDE.Photino/Layout/MainLayout.razor +++ b/src/SharpIDE.Photino/Layout/MainLayout.razor @@ -29,12 +29,10 @@ - - - +