All Questions
7 questions
0
votes
2
answers
41
views
Xamarin - Binding ListView children to custom list properties
I've got an issue with binding to a listview.
ViewModel:
public class MainPageViewModel : INotifyPropertyChanged
{
public MainPageViewModel()
{
}
private ObservableCollection<...
0
votes
1
answer
272
views
How to get JSON from api in listview labels in Xamarin C#
I have the following code that retrieves json from an api. This works because when I put a breakpoint on it, it neatly shows the json from the url.
The json looks like this when I put a breakpoint on ...
0
votes
0
answers
403
views
Xamarin dynamic forms
The idea is to create an app in Xamarin with dynamic forms. The form definition is taken from any source like local DB or Web API.
The definition contains the set of fields and theirs's default values....
0
votes
0
answers
30
views
Multiple Bindings from homepage
My homepage passes its viewmodel as follows
public HomePage(myHomePageViewModel hpViewModel) //
{
var form = new myHomePageViewModel();
this.BindingContext = form;
...
1
vote
2
answers
512
views
Xamarin, Using View Model with ViewCell messes up ViewModel Binding
I have been looking through all the suggestions i got when i wrote the Title for this but not one could help me with my problem. Since this is my first question here you will have to excuse me if im ...
0
votes
1
answer
122
views
ViewCell Buttons to Update ViewModel Property
I have a custom ViewCell class. I want to add increment/decrement buttons to this class which adjust an integer property of the bound viewmodel.
I'm new to Xamarin and am struggling to determine how ...
0
votes
0
answers
85
views
Xamarin Label IsVisible Propety isn't changing
I have a PopUp Page and in this Popup page i have a Label with IsVisible Property bound to my ViewModel. However the site is not refreshing when the IsVisible Property is changing. Whats wrong with my ...