mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 14:16:31 +00:00
better view for class distribution
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using Azaion.Common.DTO;
|
||||
|
||||
namespace Azaion.Dataset.Controls;
|
||||
|
||||
public partial class ClassDistribution : UserControl
|
||||
{
|
||||
public static readonly DependencyProperty ItemsProperty =
|
||||
DependencyProperty.Register(nameof(Items), typeof(IEnumerable<ClusterDistribution>), typeof(ClassDistribution), new PropertyMetadata(null));
|
||||
|
||||
public IEnumerable<ClusterDistribution> Items
|
||||
{
|
||||
get => (IEnumerable<ClusterDistribution>)GetValue(ItemsProperty);
|
||||
set => SetValue(ItemsProperty, value);
|
||||
}
|
||||
|
||||
public ClassDistribution()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user