15 lines
355 B
C#
15 lines
355 B
C#
using Avalonia.Controls;
|
|
using LindtLeerformPlugin.ViewModels;
|
|
|
|
namespace LindtLeerformPlugin.Views;
|
|
|
|
public partial class CellHistogramWindow : Window
|
|
{
|
|
public CellHistogramWindow()
|
|
{
|
|
InitializeComponent();
|
|
Editor.SplineDragCompleted += (_, _) =>
|
|
(DataContext as CellHistogramViewModel)?.RaiseDragCompleted();
|
|
}
|
|
}
|