python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I call function in view in xamarin
I have a function in xamarin and I want to use the value of this return function as a column in my view. So here is my function:
public int setColumn()
{
int column = 0;
...
magic bean
Votes: 0
Answers: 0
How to change the size of an object inside CollectionView Xamarin?
I don't can change height of an object inside collectionView Xamarin, how to change height with c#?
Mortirab
Votes: 0
Answers: 1
How to add to the list item when click button in xamarin
Here is my modal in xamarin:
public AboutPage()
{
InitializeComponent();
AddProductCommand = new Command<Product>(AddProduct);
this.BindingContext = this;
}
public ObservableCollect...
magic bean
Votes: 0
Answers: 1
How to send a parameter in click event in xamarin
I am quite new to Xamarin. I want to send my Binding id as a parameter of click event of button.
So here is my button:
<Button
Text="{Binding Name}"
Grid.Column="0"
...
magic bean
Votes: 0
Answers: 2