- Notifications
You must be signed in to change notification settings - Fork 59
Closed
Description
Currently using a listbox requires this:
cbColormap.Items.AddRange(Colormap.GetColormaps().Select(x => x.Name).ToArray()); var cmap = Colormap.GetColormaps().Where(x => x.Name == cbColormap.Text).ToArray()[0];
I'd like to be able to:
cbColormap.Items.AddRange(Colormap.GetColormapNames()); var cmap = Colormap.GetColormapFromName(cbColormap.Text);
Metadata
Metadata
Assignees
Labels
No labels