Ooui.Forms ListViews now respect the values of SeparatorColor and SeparatorVisibility
This commit is contained in:
parent
a75d44b573
commit
eb2a8ec367
|
@ -108,6 +108,11 @@ namespace Ooui.Forms.Renderers
|
||||||
for (var i = listItems.Count; i < items.Count; i++) {
|
for (var i = listItems.Count; i < items.Count; i++) {
|
||||||
var li = new ListItem ();
|
var li = new ListItem ();
|
||||||
li.Style["list-style-type"] = "none";
|
li.Style["list-style-type"] = "none";
|
||||||
|
if (Element.SeparatorVisibility == SeparatorVisibility.Default)
|
||||||
|
{
|
||||||
|
var color = Element.SeparatorColor.ToOouiColor(Color.FromStyleValue("#999"));
|
||||||
|
li.Style["border-bottom"] = string.Format("{0}px {1} {2}", 1, "solid", color.ToString());
|
||||||
|
}
|
||||||
li.Click += ListItem_Click;
|
li.Click += ListItem_Click;
|
||||||
Control.AppendChild (li);
|
Control.AppendChild (li);
|
||||||
listItems.Add (li);
|
listItems.Add (li);
|
||||||
|
|
Loading…
Reference in New Issue