Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.WPF/MainWindow.Information.cs')
-rw-r--r--UVtools.WPF/MainWindow.Information.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/UVtools.WPF/MainWindow.Information.cs b/UVtools.WPF/MainWindow.Information.cs
index 8b40065..71d6a5f 100644
--- a/UVtools.WPF/MainWindow.Information.cs
+++ b/UVtools.WPF/MainWindow.Information.cs
@@ -31,15 +31,15 @@ namespace UVtools.WPF
{
public partial class MainWindow
{
- public ObservableCollection<SlicerProperty> SlicerProperties { get; } = new();
+ public RangeObservableCollection<SlicerProperty> SlicerProperties { get; } = new();
public DataGrid PropertiesGrid;
public DataGrid CurrentLayerGrid;
private uint _visibleThumbnailIndex;
private Bitmap _visibleThumbnailImage;
- private ObservableCollection<ValueDescription> _currentLayerProperties = new();
+ private RangeObservableCollection<ValueDescription> _currentLayerProperties = new();
- public ObservableCollection<ValueDescription> CurrentLayerProperties
+ public RangeObservableCollection<ValueDescription> CurrentLayerProperties
{
get => _currentLayerProperties;
set => RaiseAndSetIfChanged(ref _currentLayerProperties, value);