Files
SharpIDE/src/SharpIDE.Photino/Components/IdeSettingsDialog.razor
Matt Parker b39b5eecc5 more
2025-08-07 02:11:04 +10:00

15 lines
667 B
Plaintext

@using SharpIDE.Photino.Models
@inject AppState AppState
<MudStack Class="ml-2 mr-4 mb-2">
<MudSwitch @bind-Value="@AppState.IdeSettings.AutoOpenLastSolution" Label="Automatically open last solution" Color="Color.Primary" />
<MudSwitch @bind-Value="@AppState.IdeSettings.AutoOpenTerminalOnLaunch" Disabled="true" Label="Automatically open terminal when SharpIDE starts" Color="Color.Primary" />
<MudSwitch @bind-Value="@AppState.IdeSettings.OpenTerminalOnBuildRebuildRestore" Label="Open the terminal on Build, Rebuild, Restore" Color="Color.Primary" />
</MudStack>
@code {
[CascadingParameter]
public IMudDialogInstance MudDialog { get; set; } = null!;
}