I'm currently learning UWP on the Microsoft Virtual Academy. Right now I'm on a challenge regarding adaptivity / binding. The course is taught in C# so I have to translate the C# code to vb.net, since this is the language I learned earlier. Not a huge deal until now:
When creating a UserControl that is to be put into a GridView, I am asked to put this line of Code after InitializeComponent().
this.DataContextChanged += (s, e) => Bindings.Update();
Unfortunately, I have no idea how to translate this expression into Visual Basic. Any help would be greatly appreciated!
The solution Code can be found at 2:42 here.
The challange video can be found here.