Skip to content

Conversation

@voytas
Copy link
Contributor

@voytas voytas commented Jan 27, 2026

No description provided.

… with streamlined immediate command parsing functionality
…ueries, refine command parsing, and update UI labels/messages.
protected override Size MeasureOverride(Size availableSize)
{
var rowCount = (viewer.Data.Length + viewer.BytesPerRow - 1) / viewer.BytesPerRow;
double totalHeight = rowCount * viewer.RowHeight;
{
foreach (var (rowIndex, row) in _visibleRows)
{
var rect = new Rect(0, rowIndex * viewer.RowHeight, finalSize.Width, viewer.RowHeight);
}

private void ScrollToRow(int rowIndex) => _scrollViewer.Offset =
new Vector(_scrollViewer.Offset.X, rowIndex * RowHeight);
[ObservableProperty]
[CustomValidation(typeof(MemoryViewModel), nameof(ValidateCommand))]
[NotifyDataErrorInfo]
private string _commandText = string.Empty;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants