We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi James,
Was wondering if you could expose the Items property as public in the Grouping class? We have a need for that.
public class Grouping<K, T> : ObservableCollection<T> { public K Key { get; private set; } **public IList<T> Items { get { return base.Items; } }** public Grouping(K key, IEnumerable<T> items) { Key = key; foreach (var item in items) this.Items.Add(item); } }
Thanks and have a good one.
P
The text was updated successfully, but these errors were encountered:
1a7fd2d
No branches or pull requests
Hi James,
Was wondering if you could expose the Items property as public in the Grouping class? We have a need for that.
Thanks and have a good one.
P
The text was updated successfully, but these errors were encountered: