5 writes to Checked
Aspire.Dashboard (3)
Components\Controls\DashboardRunSelect.razor.cs (1)
65Checked = string.Equals(run.RunId, SelectedRunId, StringComparison.Ordinal),
Components\Pages\ConsoleLogs.razor.cs (2)
651Checked = _activeView == ConsoleLogsView.Console, 659Checked = _activeView == ConsoleLogsView.Terminal,
Aspire.Dashboard.Components.Tests (2)
Controls\AspireMenuTests.cs (2)
221new() { Text = "Console", Role = MenuItemRole.MenuItemCheckbox, Checked = false }, 222new() { Text = "Terminal", Role = MenuItemRole.MenuItemCheckbox, Checked = true },
10 references to Checked
Aspire.Dashboard (1)
Model\MenuButtonItem.cs (1)
22/// <see cref="Checked"/>) that assistive technology can announce; leave <see langword="null"/>
Aspire.Dashboard.Components.Tests (9)
Layout\MainLayoutTests.cs (5)
349Assert.True(menuItem.Checked); 460Assert.True(item.Checked); 471Assert.False(item.Checked); 538Assert.False(item.Checked); 544Assert.True(item.Checked);
Pages\ConsoleLogsTerminalTests.cs (4)
132Assert.False(instance.LogsMenuItemsForTest[0].Checked); 133Assert.True(instance.LogsMenuItemsForTest[1].Checked); 138Assert.True(instance.LogsMenuItemsForTest[0].Checked); 139Assert.False(instance.LogsMenuItemsForTest[1].Checked);