Hi,
Looking to know if somthing like this is possible
'new ContentPage{
Content = new StackLayout{
Children =
{
new SeekBar{
//..... properties here
},
}
}
}
var seekBar = new SeekBar{
//... properties
}
//... listeners
new ContentPage{
Content = new StackLayout{
Children =
{
seekBar
}
}
}
}
}'
I can't seem to find anything in the documentation saying this is something available via code, only if added to the a View manually from the toolbox.
Thanks!