mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
22 lines
641 B
C#
22 lines
641 B
C#
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();
|
|
}
|
|
} |