Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
107 views

In my .NET 9 MAUI application, I have created a lot of components for every part of the application like that: public partial class WordCheck : ContentView { #region Bindable Properties ...
Enrico's user avatar
  • 6,872
0 votes
0 answers
377 views

After years in love/hate relationship with WPF I'm exploring AvaloniaUI with CommunityToolkit.Mvvm.ComponentModel (conscious choice of not using ReactiveUI). I usually find my way around, but this ...
Mike-Kilo's user avatar
  • 1,354
0 votes
2 answers
176 views

I found an article on Compiled Binding and tried to follow it exactly. My XAML file looks something like this: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns=&...
Bob Gatto's user avatar
  • 166
0 votes
1 answer
48 views

I have the following code: <ListView ItemsSource="{Binding Creature.FriendlyEnvironment}" x:DataType="vm:PlantDetailsViewModel"> <ListView.ItemTemplate> ...
Mortens's user avatar
  • 67
0 votes
1 answer
970 views

I created a model class called Project and also created a ViewModel class called MainPageViewModel. What I want to implement is a simple table that has multiple columns. There should be one column ...
yasith rangana's user avatar
2 votes
1 answer
900 views

I'm struggling to get a grip of the compiled databinding concept. I have one view (MainPage) that contains a ListBox and one data template (ItemTemplate) used for that ListBox. The MainPage has a ...
Kristoffer Fast's user avatar
7 votes
2 answers
5k views

UWP came with a new way of DataBinding, Compiled Binding, using the {x:Bind} markup extension, when I was discovering this new feature, I found out that we can actually bind an event to a method ! ...
AymenDaoudi's user avatar
  • 8,377
5 votes
1 answer
733 views

I'm trying to grasp the new compiled bindings, but right at the start I get stopped by this simple problem. I have Hub control with one HubSection. The content of this section is an ItemsControl that ...
Aleksandar Toplek's user avatar