v0.2
This commit is contained in:
@@ -1,14 +1,19 @@
|
|||||||
@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence
|
@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence
|
||||||
|
|
||||||
<div @onmouseover="@(() => _open = true)" @onmouseleave="@(() => _open = false)">
|
<div @onmouseover="@(() => _open = true)">
|
||||||
<MudPopover Open="@_open" AnchorOrigin="Origin.CenterCenter" TransformOrigin="Origin.CenterRight">
|
<MudPopover Duration="100" OverflowBehavior="OverflowBehavior.FlipNever" Open="@_open" AnchorOrigin="Origin.TopRight" TransformOrigin="Origin.TopRight">
|
||||||
<div class="">
|
<div @onmouseleave="@(() => _open = false)">
|
||||||
<MudPaper Class="pa-2">
|
<MudStack Justify="Justify.FlexEnd" AlignItems="AlignItems.End">
|
||||||
@foreach(var projects in SolutionModel.AllProjects)
|
<MudButton Disabled="true" Style="min-width: 20px;">
|
||||||
{
|
<MudIcon Icon="@Icons.Material.Filled.PlayArrow" Size="Size.Medium" Color="Color.Default"/>
|
||||||
<MudText>@projects.Name</MudText>
|
</MudButton>
|
||||||
}
|
<MudPaper Class="pa-2">
|
||||||
</MudPaper>
|
@foreach (var projects in SolutionModel.AllProjects)
|
||||||
|
{
|
||||||
|
<MudText>@projects.Name</MudText>
|
||||||
|
}
|
||||||
|
</MudPaper>
|
||||||
|
</MudStack>
|
||||||
</div>
|
</div>
|
||||||
</MudPopover>
|
</MudPopover>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user