[pull] main from w-ahmad:main#32
Merged
Merged
Conversation
- Updated landing page (index.md) with quick start, feature table, and doc links - Updated docs/toc.yml with full grouped navigation structure - Added overview.md: architecture, key concepts, namespace reference - Added binding-data.md: ObservableCollection, INotifyPropertyChanged, live shaping - Added defining-columns.md: AutoGenerateColumns, explicit columns, AutoGeneratingColumn event - Added column-types.md: all 9 built-in column types with examples and property tables - Added column-sizing.md: Width, GridLength, ColumnAutoWidthMode, min/max, row heights - Added sorting.md: built-in sort, SortDescriptions, Sorting/ClearSorting events - Added filtering.md: filter flyout, FilterDescriptions, ShowFilterItemsCount, custom handler - Added editing.md: full lifecycle (BeginningEdit, PreparingCellForEdit, CellEditEnding, CellEditEnded) - Added selection.md: SelectionMode, SelectionUnit, CellSlot, CellSelectionChanged - Added row-headers.md: HeadersVisibility, RowHeaderTemplate, sizing - Added row-details.md: RowDetailsTemplate, RowDetailsVisibilityMode, AreRowDetailsFrozen - Added frozen-columns.md: FrozenColumnCount - Added column-reordering.md: CanReorderColumns, ColumnReordering/Reordered events - Added clipboard.md: CanCopy, CanPaste, CopyToClipboard, PasteFromClipboard events - Added export.md: ShowExportOptions, ExportAllContent/ExportSelectedContent events - Added styling.md: CellStyle, ColumnHeaderStyle, ElementStyle, grid lines, alternate rows - Added conditional-styling.md: ConditionalCellStyles, TableViewConditionalCellStyle, predicate - Added context-flyouts.md: RowContextFlyout, CellContextFlyout, opening events - Added commands-events.md: full events/args/enums reference - Added performance.md: virtualization, live shaping, auto-width, filtering tips - Added migration-wpf.md: WPF DataGrid property/event/column mapping tables - Added migration-wct.md: WCT DataGrid property/event/column mapping tables - Added feature-index.md: feature index with common scenario quick-links Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Replace backtick-quoted API member names in prose and table cells with DocFX xref links ([`Member`](xref:WinUI.TableView.ClassName.Member)) so readers can navigate directly to the generated API reference from every mention of a property, event, enum type, or column class. - 23 files updated (371 prose lines + 394 link substitutions) - Links cover: TableView properties/events, column types and their properties, event args classes, enum types, helper types - Code blocks are left untouched - Already-linked text is not double-linked Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Replace broken file link (~/api/index.md) with an xref link to the TableView API reference page, which is the correct DocFX entry point. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- column-reordering.md: add xrefs for TableViewColumn.CanReorder and TableViewColumn.Order - sorting.md: replace SortDescriptions.Clear() with ClearAllSorting(); add RefreshSorting() docs; add xrefs for CanSort and SortDirection; update Common options table - filtering.md: replace FilterDescriptions.Clear() with ClearAllFilters(); add ClearAllFilters() and RefreshFilter() sections; add xrefs for CanFilter and IsFiltered on TableViewColumn; update Common options table - performance.md: add RefreshView(), RefreshSorting(), RefreshFilter() documentation with examples - selection.md: expand Corner button section to document full Options flyout contents (SelectAll, DeselectAll, Copy, Copy with Headers, Paste, Clear Sorting, Clear Filter, Export All, Export Selected) and ShowExportOptions gate - clipboard.md: update IncludeHeaders description to mention Ctrl+Shift+C shortcut; update Copying section - migration-wpf.md: remove unverified 'Microsoft recommends' claim - migration-wct.md: remove unverified 'archived Toolkit documentation recommends' claim - toc.yml: remove Customization (Legacy) entry - index.md: add Product model and Products property C# snippet after XAML quick start; remove redundant Features link list (keeping Key Features table and Getting Started / Migration links) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Add link to Feature Index above the table - Each feature row now links to the corresponding how-to doc - Merged Grid lines + Alternate rows into a single Styling row - Added Column reordering and Column sizing rows that were missing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Xref additions across feature docs: - editing.md: xrefs for all BeginningEdit, PreparingCellForEdit, CellEditEnding event arg properties and TableViewEditAction enum values - sorting.md: xrefs for TableViewSortingEventArgs.Column and TableViewClearSortingEventArgs.Column - clipboard.md: xref for TableViewCopyToClipboardEventArgs.IncludeHeaders - column-reordering.md: xrefs for event arg properties; correct TableViewColumnReorderedEventArgs to use Index property - column-sizing.md: correct enum xrefs to use TableViewColumnAutoWidthMode.* UIDs - conditional-styling.md: xrefs for TableViewConditionalCellStyleContext properties - context-flyouts.md: xrefs for row/cell context flyout event arg properties; correct cell args to Slot/Item - row-details.md: xrefs for TableViewRowDetailsVisibilityMode enum values - row-headers.md: xrefs for TableViewHeadersVisibility enum values - selection.md: xrefs for TableViewSelectionUnit and TableViewCornerButtonMode enum values; fix broken xref typo - styling.md: xrefs for TableViewGridLinesVisibility enum values and column style properties - defining-columns.md: xrefs for TableViewAutoGeneratingColumnEventArgs properties Content corrections: - migration-wct.md / migration-wpf.md: update intro wording - migration-wct.md: remove unsupported feature rows that were incorrectly listed - datagrid-feature-comparison.md: fix table column alignment - index.md: fix Samples App URL; correct Auto-generating columns link to defining-columns.md; remove Feature Index link - toc.yml: remove Feature Index entry Removed legacy docs: - customization.md deleted - feature-index.md deleted Added: - docs/api/ regenerated YAML files for full API reference Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Trigger on pull_request (opened, synchronize, reopened, closed) in addition to push - build job: skip on PR closed events (no-op); upload docs-site artifact on PR open/sync for preview download - publish-docs job: runs independently on PR merged (closed + merged == true); self-contained build + deploy; no longer depends on build job - push to main: still builds docs as a sanity check but does not deploy Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Add 'Sorting by a different property (SortMemberPath)' section explaining when and how to use SortMemberPath - Show examples for bound columns (formatted display vs raw sort value) and template columns (no Binding, explicit sort path) - Explain the reflection vs cell-content fallback behavior - Add SortMemberPath to Common options table - Update Notes to mention SortMemberPath as the preferred way to enable sort on template columns Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Screenshots added: - docs/images/tableview-overview.png -> index.md (intro) - docs/images/sorting-column-header.png -> sorting.md (basic example) - docs/images/filtering-flyout.png -> filtering.md (filter flyout section) - docs/images/cell-selection.gif -> selection.md (SelectionUnit section) - docs/images/column-reordering-drag.gif -> column-reordering.md (basic example) - docs/images/row-headers-custom.png -> row-headers.md (custom template section) - docs/images/row-details-expanded.png -> row-details.md (basic example) - docs/images/styling-alternating-rows.png -> styling.md (alternating rows section) - docs/images/conditional-styling-example.png -> conditional-styling.md (basic example) User edits preserved: - index.md: add dotnet CLI install option; simplify XAML snippet; switch Product to class with init properties - conditional-styling.md: remove extra collection wrapper; update predicate to IsLowPrice/Price < 10 lambda style - row-details.md: update template to Product model (Name, Price, InStock) - row-headers.md: update custom template to FontIcon example - styling.md: update AlternateRowBackground/Foreground to realistic dark-mode values Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
- New docs/docs/aot-compatibility.md covering:
- When AOT/trimming guidance applies
- The GeneratedBindableCustomProperty rule with clear bound vs template column breakdown
- {Binding} requires attribute; {x:Bind} in templates does not
- Plain POCO and CommunityToolkit.Mvvm examples
- Nested model guidance
- Project configuration (PublishAot, CsWinRTAotWarningLevel)
- Links to .NET Native AOT docs, C#/WinRT, CommunityToolkit.Mvvm, and CsWinRT GitHub
- toc.yml: add Native AOT Compatibility under Reference group
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…cumentation docs: add complete how-to documentation for all TableView features
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )