style(ui): redesign task rows with checkboxes, inline add field, remove toolbar

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mika Kuns
2026-04-14 10:29:44 +02:00
parent 2d6b5bbaff
commit eb7c1ebf69
2 changed files with 76 additions and 23 deletions

View File

@@ -31,4 +31,10 @@ public partial class TaskListView : UserControl
e.Handled = true;
}
}
private void OnInlineAddKeyDown(object? sender, Avalonia.Input.KeyEventArgs e) { }
private void OnInlineAddGotFocus(object? sender, Avalonia.Interactivity.RoutedEventArgs e) { }
private void OnInlineAddLostFocus(object? sender, Avalonia.Interactivity.RoutedEventArgs e) { }
private void OnTaskListKeyDown(object? sender, Avalonia.Input.KeyEventArgs e) { }
private void OnCheckboxPressed(object? sender, Avalonia.Input.PointerPressedEventArgs e) { }
}