VisualAlf

Results 7 comments of VisualAlf

IMHO the easiest way for this is to use a converter. If you have eg. a numeric as the underlying datatype it will be sorted correctly, regardless of the displayed...

@w-ahmad According to the [docs](https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.control.gettemplatechild?view=windows-app-sdk-1.5url) use of GetTemplateChild() should probably be restricted to OnAppyTemplate(). > You can use the GetTemplateChild method inside your OnApplyTemplate override and keep a reference to...

I noticed, when `SelectionUnit=Row`

Happens on the last cell in a row. [TVIssue-Esc.zip](https://github.com/user-attachments/files/18920969/TVIssue-Esc.zip) Select a cell in last column with mouse, then F2, then Esc.

At least a caveat (or a workaround, I just found about) : I had the settings (like above) within a Style. If I put SelectionMode directly into the TableView definition,...

as I wrote in my previous comment, the problem stems from usage of Style. To reproduce amend the original SampleApp like so: ``` ... .... .... ``` Put a Breakpoint...

What I learned: in WinUI 3 handling of a plain Property is different from handling of a Dependencyproperty. 1. you can hide a (plain) property in a Base class (as...