719 questions
1
vote
1
answer
598
views
How to diagnose crashes in a UWP windows store app with WinUI 2.0 tree view control
I have a UWP Windows store app with a WinUI 2.0 tree view control. I load the sub directory structure in the treeview based on user selection of a folder.
The problem I am facing is that the ...
0
votes
1
answer
377
views
How to structure my project to use x:Bind
After beeing used to structure my project in WPF on a light MVVM pattern, I'm looking into WINUI for a new project.
In the elapsed time, UWP and x:Bind did appear and it looks like the pattern can be ...
1
vote
1
answer
211
views
ProgressRing stops animating after a page navigation on Uno 2.4 & WASM
WinUI ProgressRing get stuck and won't turn around the background again after a page navigation. It looks a frozen progress ring :) ProgressRing seems ok on UWP, the real issue seems on WASM. I ...
0
votes
1
answer
251
views
How to bring an element inside a list view item to the front of the entire app?
Using UWP XAML, I am trying to recreate this textbox UX from Postman whereby it pops up above all other elements in the app to display the full text: https://streamable.com/avrixo. I've almost fully ...
2
votes
2
answers
349
views
WinUI ProgressRing Don't Show on WASM (Uno 2.4)
I'm trying to add the new WinUI 2.4 ProgressRing. It works perfectly on UWP app but not show in WASM.
My App.xaml and Mainpage.xaml is:
App.xaml:
<Application
x:Class="ACM_Search_Uno.WinUI....
0
votes
1
answer
424
views
What do I need to do in my view to make Prism.Uno work with x:Bind?
I come from a WPF / Prism background but I really like what X:Bind offers. How do I get x:Bind to work with my ViewModel when using Prism.Uno?
I have prism:ViewModelLocator.AutoWireViewModel="True" ...
1
vote
1
answer
233
views
Using WinUI 2.3 in an Uno shared project
I've been excited about Uno but at the end of the day, I'm a diehard Windows 10 M supporter and would like to publish an app for the platform before it's completely buried and impossible to target.
...
5
votes
3
answers
5k
views
.NET Core 3 using WinUI
With .NET Core 3 in preview, it is possible to create a WinForms or WPF "desktop application" on the .NET Core platform.
Using XAML islands, it is possible to host UWP controls in a WPF application.
...
3
votes
1
answer
758
views
UWP WinUI TreeView programatically scroll to item
I am trying to use new WinUI toolkit TreeView control. I need to scroll programmatically to specific item.
I cannot find way to do this.
105
votes
4
answers
52k
views
Basic concepts of MVVM-- what should a ViewModel do?
Trying to grasp the concepts of MVVM, I have already read several blogs and looked at a few projects.
From what I understand, a View is dumb, it just knows how to present something that is passed to ...