v0.5
This commit is contained in:
@@ -1,18 +1,25 @@
|
|||||||
@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence
|
@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence
|
||||||
|
|
||||||
<div @onmouseover="@(() => _open = true)">
|
<div @onmouseover="@(() => _open = true)">
|
||||||
<MudPopover Duration="100" OverflowBehavior="OverflowBehavior.FlipNever" Open="@_open" AnchorOrigin="Origin.TopRight" TransformOrigin="Origin.TopRight">
|
<MudPopover Duration="100" OverflowBehavior="OverflowBehavior.FlipNever" Open="@true" AnchorOrigin="Origin.TopRight" TransformOrigin="Origin.TopRight">
|
||||||
<div @onmouseleave="@(() => _open = false)">
|
<div class="pl-2" @onmouseleave="@(() => _open = false)">
|
||||||
<MudStack Justify="Justify.FlexEnd" AlignItems="AlignItems.End">
|
<MudStack Justify="Justify.FlexEnd" Class="pa-0 ma-0" Spacing="0">
|
||||||
<MudButton Disabled="true" Style="min-width: 20px;">
|
<MudButton Disabled="true" Style="min-width: 20px; align-self: end">
|
||||||
<MudIcon Icon="@Icons.Material.Filled.PlayArrow" Size="Size.Medium" Color="Color.Default"/>
|
<MudIcon Icon="@Icons.Material.Filled.PlayArrow" Size="Size.Medium" Color="Color.Default"/>
|
||||||
</MudButton>
|
</MudButton>
|
||||||
<MudPaper Class="pa-2">
|
@if (SolutionModel?.AllProjects?.Count is >= 0)
|
||||||
@foreach (var projects in SolutionModel.AllProjects)
|
|
||||||
{
|
{
|
||||||
<MudText>@projects.Name</MudText>
|
@foreach (var project in SolutionModel.AllProjects)
|
||||||
|
{
|
||||||
|
<MudStack Row="true" Spacing="0" AlignItems="AlignItems.Center">
|
||||||
|
<MudText>@project.Name</MudText>
|
||||||
|
<MudSpacer/>
|
||||||
|
<MudButton Style="min-width: 20px;">
|
||||||
|
<MudIcon Icon="@Icons.Material.Filled.PlayArrow" Size="Size.Medium" Color="Color.Success"/>
|
||||||
|
</MudButton>
|
||||||
|
</MudStack>
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</MudPaper>
|
|
||||||
</MudStack>
|
</MudStack>
|
||||||
</div>
|
</div>
|
||||||
</MudPopover>
|
</MudPopover>
|
||||||
|
|||||||
Reference in New Issue
Block a user