mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-14 21:26:35 +08:00
项目结构调整
This commit is contained in:
21
Others/Live-Charts-master/WpfView/AxisWindowCollection.cs
Normal file
21
Others/Live-Charts-master/WpfView/AxisWindowCollection.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user