Table of Contents

v1.5.0-preview1

Preview Release · July 7, 2026 · NuGet · GitHub Release

🌟 Features

  • Added CellWithRow selection mode to select the clicked cell while keeping the full row highlighted by @w-ahmad in #388
  • Added drag selection rectangle for multi-cell selection by @godlytalias in #344
  • Added clipboard paste support (CanPaste, Pasting event, paste command) by @w-ahmad in #379
  • Added ColumnAutoWidthMode to auto-size columns to their content by @Mangepange in #361
  • Added support for inline cell templates in TableViewTemplateColumn by @w-ahmad in #360
  • Added Native AOT compatibility by @w-ahmad in #352
  • Added UI Automation / accessibility support (TableViewAutomationPeer, TableViewCellAutomationPeer, TableViewRowAutomationPeer, TableViewColumnHeaderAutomationPeer, TableViewRowHeaderAutomationPeer) by @w-ahmad in #397

Enhancements

  • Improved keyboard navigation (Tab, Enter, and arrow key handling across cells) by @Mangepange in #356
  • Added OperationContentBinding to TableViewTemplateColumn for sorting, filtering, and export support by @Mangepange in #356
  • TableViewTemplateColumn now uses ClipboardContentBinding for copy and export operations by @Mangepange in #355
  • Extended compiled binding path to support mixed collections and subclass hierarchies by @DanielTrommel in #382
  • Added option to select a cell or row when a context menu is triggered by @cricketthomas in #374
  • Migrated library source to C# 14 using the field keyword by @w-ahmad in #375
  • Improved memory management and lifecycle handling for TableView by @w-ahmad in #369
  • Allow selector-only TableViewTemplateColumn to enter edit mode by @w-ahmad in #400
  • Derive default date/time formats from the user profile locale by @w-ahmad in #401
  • Added Persian (fa-IR) translations by @ghost1372 in #402
  • Updated Windows App SDK target from 1.6 to 1.8 by @licon4812 in #285
  • Updated Uno.SDK and Uno.WinUI to latest versions by @w-ahmad in #405

Fixes

  • Fix: null clipboard payload handling by @mavaddat in #305
  • Fix: End current edit when IsReadOnly changes on TableView or column by @Mangepange in #389
  • Fix: End editing on pointer press to prevent stale edit states by @Mangepange in #357
  • Fix: Column width regression after C# 14 refactor and ColumnAutoWidthMode changes by @DanielTrommel in #386
  • Fix: Ensure cell measures when element is set for correct column auto-sizing by @w-ahmad in #372
  • Fix: Filter flyout search behavior using custom MenuFlyout control by @w-ahmad in #378
  • Fix: Guard column reorder on valid drop target and prevent duplicate header option commands by @w-ahmad in #352
  • Fix: Implement platform-specific ClockIdentifier logic for date/time columns by @w-ahmad in #404

New Contributors