using System.Collections.Generic; using CUE.NET.Devices.Keyboard.Brushes; namespace CUE.NET.Devices.Keyboard.Keys { public interface IKeyGroup { /// /// Gets a read-only collection containing the keys from this group. /// IEnumerable Keys { get; } /// /// Gets or sets the brush which should be drawn over this group. /// IBrush Brush { get; set; } /// /// Gets or sets the z-index of this keygroup to allow ordering them before drawing. (lowest first) (default: 0) /// int ZIndex { get; set; } } }