Merge pull request #79 from ericsink/master
For XF, add support for list item click.
This commit is contained in:
commit
386b364851
|
@ -82,6 +82,7 @@ namespace Ooui.Forms.Renderers
|
||||||
listItem.Style["list-style-type"] = "none";
|
listItem.Style["list-style-type"] = "none";
|
||||||
|
|
||||||
listItem.AppendChild(cell);
|
listItem.AppendChild(cell);
|
||||||
|
listItem.Click += ListItem_Click;
|
||||||
|
|
||||||
_cells.Add(listItem);
|
_cells.Add(listItem);
|
||||||
}
|
}
|
||||||
|
@ -92,6 +93,13 @@ namespace Ooui.Forms.Renderers
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ListItem_Click(object sender, TargetEventArgs e)
|
||||||
|
{
|
||||||
|
var it = (ListItem)sender;
|
||||||
|
var ndx = _cells.IndexOf(it);
|
||||||
|
Element.NotifyRowTapped(ndx, null);
|
||||||
|
}
|
||||||
|
|
||||||
private void UpdateBackgroundColor()
|
private void UpdateBackgroundColor()
|
||||||
{
|
{
|
||||||
var backgroundColor = Element.BackgroundColor.ToOouiColor();
|
var backgroundColor = Element.BackgroundColor.ToOouiColor();
|
||||||
|
|
Loading…
Reference in New Issue