Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Collections.Specialized;
using System.ComponentModel;

namespace HandyControl.Controls;
namespace HandyControl.Collections;

/// <summary>
/// Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Globalization;
using System.Threading;
using System.Windows.Threading;
using HandyControl.Controls;
using HandyControl.Collections;

namespace HandyControl.Tools;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Windows.Threading;
using HandyControl.Tools;

namespace HandyControl.Controls;
namespace HandyControl.Collections;

/// <summary>
/// Thread-safe collection. You can safely bind it to a WPF control using the property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using HandyControl.Tools;
using HandyControl.Tools.Extension;

namespace HandyControl.Controls;
namespace HandyControl.Collections;

/// <summary>IList implemented collection which supports undo/redo.</summary>
/// <typeparam name="TElement">type of elements</typeparam>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Collections.Specialized;
using HandyControl.Tools;

namespace HandyControl.Controls;
namespace HandyControl.Collections;

/// <summary>ObservableCollection which supports undo/redo.</summary>
/// <typeparam name="TElement">type of elements</typeparam>
Expand Down
Loading