Skip to content

Commit f461096

Browse files
authored
Merge pull request #193 from gmono/develop
Update ForeverListBox.cs
2 parents e206ed6 + f19e306 commit f461096

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/ReaLTaiizor/Controls/ListBox/ForeverListBox.cs

+9
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ public string[] items
5050
}
5151
}
5252

53+
public object[] ListItems
54+
{
55+
get
56+
{
57+
return ListBx.Items.Cast<object>().OfType<object>().ToArray();
58+
}
59+
}
60+
public object ListSelectedItem => ListBx.Items[SelectedIndex];
61+
5362
[Category("Colors")]
5463
public Color SelectedColor { get; set; } = ForeverLibrary.ForeverColor;
5564

0 commit comments

Comments
 (0)