Hi,
sizing the column width by IGGridView.ColumnResizing enums is a really nice feature.But i'm looking for a way, resizing the rows height of the grid accordingly.
I'm using XAMARIN.Any hints ?
Best regards
steve,
I found i ;~)
Just had to dd it to helper.
Thank you
Mark
Steve,
Thanks you for fast response.
the difference is that I use interface and helper function in a grid and my delegate derived as following:
public class MyGridDelegate : UIScrollViewDelegate, IIGGridViewDelegate {
...
do I need to use [Export()] for that?
Hi Mark,
Its definitely there:
public class GridDelegate : IGGridViewDelegate { public override float ResolveRowHeight (IGGridView gridView, IGRowPath path) { return 50; } }
Try using the class i just defined.
-SteveZ
Hi Steve,
This is the only place I can find any references to variable row height.
I have a delegate based on UIScrollViewDelegate, IIGGridViewDelegate but there is no overrideble ResolveRowHeight.
Do you have c# example of it's use or any more details you can provide?
Hello,
Thank you for your responses. If you have any additional questions please do not hesitate to ask.