Replies: 1 comment 2 replies
-
In XAML, you'd probably do something like what is below. Binding is pretty simple with XAML (and even Razor). I suggest reading up on MVVM or even MVU if you're interested in XAML design.
Then, preferably in your ViewModel (using CommunityToolkit.Mvvm.ComponentModel):
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If one day implementing XAML syntax becomes Razor syntax, writing UI will be much easier
I don't know if this idea works
Datas
List<string> Names= new List<string>(){ "A","B","C"};
Razor
Isn't Razor easier to bind data to
Beta Was this translation helpful? Give feedback.
All reactions