mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-04 16:50:51 +08:00
21 lines
485 B
C#
21 lines
485 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using LiveCharts.Helpers;
|
||
|
|
|
||
|
|
namespace LiveCharts.Wpf
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public class AxisWindowCollection : NoisyCollection<AxisWindow>
|
||
|
|
{
|
||
|
|
public AxisWindowCollection()
|
||
|
|
{
|
||
|
|
NoisyCollectionChanged += OnNoisyCollectionChanged;
|
||
|
|
}
|
||
|
|
|
||
|
|
private void OnNoisyCollectionChanged(IEnumerable<AxisWindow> oldItems, IEnumerable<AxisWindow> newItems)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|