David

Results 124 comments of David

Hum I don't think that we already have a an issue for that. I've tested that updating the template (visual states) while pointer is pressed would result in acceptable pointers...

Thinking about it, it's totally makes sense: When we press the pointer, the `Button` captures the pointer and it will then receive all pointer events until release. On UWP, they...

Note: We should also generate an implicit cast from `TRecord` to `Bindable` which would just act as a wrapper for setter (has to be unwrapped directly in the setter and...

Hi @CalebSerafin, thanks for the report. About your case 1.: Are you aware that you can use the [`Refresh` command on the `FeedView`](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.html) to allow user to trigger a refresh?...

We are continuously trying to improve documentation, it's never ending task, but all contributions are welcome :)

> ! equates to dialog Well IMHO dialog means "modal view with buttons at the bottom" (i.e. user should not be able to dismiss it). > Dialog controls are modal...

BTW, followed the doc on the MS site, found this interesting https://learn.microsoft.com/en-us/windows/apps/design/controls/dialogs-and-flyouts/ Dialogs and flyouts - Windows appsDialogs and flyouts display transient UI elements that appear when the user requests...

We can definitely add an attribute to tag the `Can` on method like: ```csharp [CanExecute(nameof(CanSave))] public void Save(Profile profile) {}; private bool CanSave(Profile profile) => profile.Username is { Length: >3...

> Considering this information, I think we should consider a CanXXX prefixed synchronous method, which will be fed with the most-recent feed values, if their signature matches their XXX counterpart....

> Just to clear, the builder allows for the CanExecute to be specified, right? > Yes :)