diff --git a/SharpTreeView/FlatListTreeNode.cs b/ICSharpCode.ILSpyX/TreeView/FlatListTreeNode.cs similarity index 99% rename from SharpTreeView/FlatListTreeNode.cs rename to ICSharpCode.ILSpyX/TreeView/FlatListTreeNode.cs index 6ae54e74e..f63898278 100644 --- a/SharpTreeView/FlatListTreeNode.cs +++ b/ICSharpCode.ILSpyX/TreeView/FlatListTreeNode.cs @@ -20,7 +20,9 @@ using System; using System.Collections.Generic; using System.Diagnostics; -namespace ICSharpCode.TreeView +#nullable disable + +namespace ICSharpCode.ILSpyX.TreeView { // This part of SharpTreeNode controls the 'flat list' data structure, which emulates // a big flat list containing the whole tree; allowing access by visible index. diff --git a/SharpTreeView/PlatformAbstractions/IPlatformDataObject.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDataObject.cs similarity index 72% rename from SharpTreeView/PlatformAbstractions/IPlatformDataObject.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDataObject.cs index 5834d7d3b..5c2f4a1ef 100644 --- a/SharpTreeView/PlatformAbstractions/IPlatformDataObject.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDataObject.cs @@ -1,4 +1,4 @@ -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { public interface IPlatformDataObject { diff --git a/SharpTreeView/PlatformAbstractions/IPlatformDragDrop.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragDrop.cs similarity index 70% rename from SharpTreeView/PlatformAbstractions/IPlatformDragDrop.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragDrop.cs index 198c05be0..c554f4f27 100644 --- a/SharpTreeView/PlatformAbstractions/IPlatformDragDrop.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragDrop.cs @@ -1,4 +1,4 @@ -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { public interface IPlatformDragDrop { diff --git a/SharpTreeView/PlatformAbstractions/IPlatformDragEventArgs.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragEventArgs.cs similarity index 68% rename from SharpTreeView/PlatformAbstractions/IPlatformDragEventArgs.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragEventArgs.cs index 455ba3aea..543480203 100644 --- a/SharpTreeView/PlatformAbstractions/IPlatformDragEventArgs.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformDragEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { public interface IPlatformDragEventArgs { diff --git a/SharpTreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs similarity index 56% rename from SharpTreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs index 6f08d77d6..7d1b8ec30 100644 --- a/SharpTreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/IPlatformRoutedEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { public interface IPlatformRoutedEventArgs { diff --git a/SharpTreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs similarity index 56% rename from SharpTreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs index 3cf7e4e05..acd2e85d2 100644 --- a/SharpTreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/ITreeNodeImagesProvider.cs @@ -1,4 +1,4 @@ -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { public interface ITreeNodeImagesProvider { diff --git a/SharpTreeView/PlatformAbstractions/XPlatDragDropEffects.cs b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/XPlatDragDropEffects.cs similarity index 92% rename from SharpTreeView/PlatformAbstractions/XPlatDragDropEffects.cs rename to ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/XPlatDragDropEffects.cs index 637e613ed..fdfd89369 100644 --- a/SharpTreeView/PlatformAbstractions/XPlatDragDropEffects.cs +++ b/ICSharpCode.ILSpyX/TreeView/PlatformAbstractions/XPlatDragDropEffects.cs @@ -1,6 +1,6 @@ using System; -namespace ICSharpCode.TreeView.PlatformAbstractions +namespace ICSharpCode.ILSpyX.TreeView.PlatformAbstractions { // // Summary: diff --git a/SharpTreeView/SharpTreeNode.cs b/ICSharpCode.ILSpyX/TreeView/SharpTreeNode.cs similarity index 99% rename from SharpTreeView/SharpTreeNode.cs rename to ICSharpCode.ILSpyX/TreeView/SharpTreeNode.cs index 139930d5f..79686bdba 100644 --- a/SharpTreeView/SharpTreeNode.cs +++ b/ICSharpCode.ILSpyX/TreeView/SharpTreeNode.cs @@ -23,9 +23,11 @@ using System.ComponentModel; using System.Diagnostics; using System.Linq; -using ICSharpCode.TreeView.PlatformAbstractions; +#nullable disable -namespace ICSharpCode.TreeView +using ICSharpCode.ILSpyX.TreeView.PlatformAbstractions; + +namespace ICSharpCode.ILSpyX.TreeView { public partial class SharpTreeNode : INotifyPropertyChanged { diff --git a/SharpTreeView/SharpTreeNodeCollection.cs b/ICSharpCode.ILSpyX/TreeView/SharpTreeNodeCollection.cs similarity index 99% rename from SharpTreeView/SharpTreeNodeCollection.cs rename to ICSharpCode.ILSpyX/TreeView/SharpTreeNodeCollection.cs index f21d46686..8b69a9553 100644 --- a/SharpTreeView/SharpTreeNodeCollection.cs +++ b/ICSharpCode.ILSpyX/TreeView/SharpTreeNodeCollection.cs @@ -22,7 +22,9 @@ using System.Collections.Specialized; using System.Diagnostics; using System.Linq; -namespace ICSharpCode.TreeView +#nullable disable + +namespace ICSharpCode.ILSpyX.TreeView { /// /// Collection that validates that inserted nodes do not have another parent. diff --git a/SharpTreeView/TreeFlattener.cs b/ICSharpCode.ILSpyX/TreeView/TreeFlattener.cs similarity index 98% rename from SharpTreeView/TreeFlattener.cs rename to ICSharpCode.ILSpyX/TreeView/TreeFlattener.cs index 39175f470..46cc5cafd 100644 --- a/SharpTreeView/TreeFlattener.cs +++ b/ICSharpCode.ILSpyX/TreeView/TreeFlattener.cs @@ -22,7 +22,9 @@ using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; -namespace ICSharpCode.TreeView +#nullable disable + +namespace ICSharpCode.ILSpyX.TreeView { sealed class TreeFlattener : IList, INotifyCollectionChanged { diff --git a/SharpTreeView/TreeTraversal.cs b/ICSharpCode.ILSpyX/TreeView/TreeTraversal.cs similarity index 98% rename from SharpTreeView/TreeTraversal.cs rename to ICSharpCode.ILSpyX/TreeView/TreeTraversal.cs index ef196a61d..25034616d 100644 --- a/SharpTreeView/TreeTraversal.cs +++ b/ICSharpCode.ILSpyX/TreeView/TreeTraversal.cs @@ -19,7 +19,7 @@ using System; using System.Collections.Generic; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpyX.TreeView { /// /// Static helper methods for traversing trees. diff --git a/ILSpy.Wpf.slnf b/ILSpy.Wpf.slnf index 831214ce7..4e5db53cc 100644 --- a/ILSpy.Wpf.slnf +++ b/ILSpy.Wpf.slnf @@ -12,7 +12,6 @@ "ILSpy.ReadyToRun\\ILSpy.ReadyToRun.csproj", "ILSpy.Tests\\ILSpy.Tests.csproj", "ILSpy\\ILSpy.csproj", - "SharpTreeView\\ICSharpCode.TreeView.csproj", "TestPlugin\\TestPlugin.csproj" ] } diff --git a/ILSpy.sln b/ILSpy.sln index 604606ee3..5d4e13a93 100644 --- a/ILSpy.sln +++ b/ILSpy.sln @@ -12,8 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{F45DB999-7E7 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy", "ILSpy\ILSpy.csproj", "{1E85EFF9-E370-4683-83E4-8A3D063FF791}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.TreeView", "SharpTreeView\ICSharpCode.TreeView.csproj", "{DDE2A481-8271-4EAC-A330-8FA6A38D13D1}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler", "ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj", "{984CC812-9470-4A13-AFF9-CC44068D666C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.Tests", "ICSharpCode.Decompiler.Tests\ICSharpCode.Decompiler.Tests.csproj", "{FEC0DA52-C4A6-4710-BE36-B484A20C5E22}" @@ -36,7 +34,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.Test EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.ILSpyX", "ICSharpCode.ILSpyX\ICSharpCode.ILSpyX.csproj", "{F8EFCF9D-B9A3-4BA0-A1B2-B026A71DAC22}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.BamlDecompiler", "ICSharpCode.BamlDecompiler\ICSharpCode.BamlDecompiler.csproj", "{81A30182-3378-4952-8880-F44822390040}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.BamlDecompiler", "ICSharpCode.BamlDecompiler\ICSharpCode.BamlDecompiler.csproj", "{81A30182-3378-4952-8880-F44822390040}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -48,10 +46,6 @@ Global {1E85EFF9-E370-4683-83E4-8A3D063FF791}.Debug|Any CPU.Build.0 = Debug|Any CPU {1E85EFF9-E370-4683-83E4-8A3D063FF791}.Release|Any CPU.ActiveCfg = Release|Any CPU {1E85EFF9-E370-4683-83E4-8A3D063FF791}.Release|Any CPU.Build.0 = Release|Any CPU - {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Release|Any CPU.Build.0 = Release|Any CPU {984CC812-9470-4A13-AFF9-CC44068D666C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {984CC812-9470-4A13-AFF9-CC44068D666C}.Debug|Any CPU.Build.0 = Debug|Any CPU {984CC812-9470-4A13-AFF9-CC44068D666C}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/ILSpy/Analyzers/AnalyzerEntityTreeNode.cs b/ILSpy/Analyzers/AnalyzerEntityTreeNode.cs index 6daa6448f..213624ee1 100644 --- a/ILSpy/Analyzers/AnalyzerEntityTreeNode.cs +++ b/ILSpy/Analyzers/AnalyzerEntityTreeNode.cs @@ -22,8 +22,8 @@ using System.Windows; using ICSharpCode.Decompiler.TypeSystem; using ICSharpCode.ILSpy.TreeNodes; using ICSharpCode.ILSpyX; -using ICSharpCode.TreeView; -using ICSharpCode.TreeView.PlatformAbstractions; +using ICSharpCode.ILSpyX.TreeView.PlatformAbstractions; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy.Analyzers { diff --git a/ILSpy/Analyzers/AnalyzerTreeNode.cs b/ILSpy/Analyzers/AnalyzerTreeNode.cs index 5f9b39650..e2946c3e0 100644 --- a/ILSpy/Analyzers/AnalyzerTreeNode.cs +++ b/ILSpy/Analyzers/AnalyzerTreeNode.cs @@ -21,7 +21,7 @@ using System.Collections.Specialized; using System.Linq; using ICSharpCode.ILSpyX; -using ICSharpCode.TreeView; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy.Analyzers { @@ -56,7 +56,7 @@ namespace ICSharpCode.ILSpy.Analyzers DeleteCore(); } - protected override void OnChildrenChanged(NotifyCollectionChangedEventArgs e) + internal protected override void OnChildrenChanged(NotifyCollectionChangedEventArgs e) { if (e.NewItems != null) { diff --git a/ILSpy/Analyzers/AnalyzerTreeView.cs b/ILSpy/Analyzers/AnalyzerTreeView.cs index 500f40f79..4e40239ea 100644 --- a/ILSpy/Analyzers/AnalyzerTreeView.cs +++ b/ILSpy/Analyzers/AnalyzerTreeView.cs @@ -27,7 +27,8 @@ using ICSharpCode.ILSpy.Analyzers.TreeNodes; using ICSharpCode.ILSpy.Docking; using ICSharpCode.ILSpy.ViewModels; using ICSharpCode.ILSpyX; -using ICSharpCode.TreeView; +using ICSharpCode.ILSpy.Controls.TreeView; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy.Analyzers { diff --git a/ILSpy/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs b/ILSpy/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs index db2c105e0..e7f83f638 100644 --- a/ILSpy/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs +++ b/ILSpy/Analyzers/TreeNodes/AnalyzedModuleTreeNode.cs @@ -22,7 +22,7 @@ using System.Windows; using ICSharpCode.Decompiler.TypeSystem; using ICSharpCode.ILSpyX.Analyzers; -using ICSharpCode.TreeView.PlatformAbstractions; +using ICSharpCode.ILSpyX.TreeView.PlatformAbstractions; namespace ICSharpCode.ILSpy.Analyzers.TreeNodes { diff --git a/ILSpy/App.xaml.cs b/ILSpy/App.xaml.cs index c34dd9b39..77722c3ae 100644 --- a/ILSpy/App.xaml.cs +++ b/ILSpy/App.xaml.cs @@ -34,13 +34,13 @@ using ICSharpCode.ILSpy.AppEnv; using ICSharpCode.ILSpy.Options; using ICSharpCode.ILSpyX.Analyzers; using ICSharpCode.ILSpyX.Settings; -using ICSharpCode.TreeView; using Medo.Application; using Microsoft.VisualStudio.Composition; using TomsToolbox.Wpf.Styles; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy { diff --git a/ILSpy/Commands/SaveCodeContextMenuEntry.cs b/ILSpy/Commands/SaveCodeContextMenuEntry.cs index 13b06a3b3..5ce79ee10 100644 --- a/ILSpy/Commands/SaveCodeContextMenuEntry.cs +++ b/ILSpy/Commands/SaveCodeContextMenuEntry.cs @@ -27,9 +27,9 @@ using ICSharpCode.ILSpy.Options; using ICSharpCode.ILSpy.Properties; using ICSharpCode.ILSpy.TreeNodes; using ICSharpCode.ILSpy.ViewModels; -using ICSharpCode.TreeView; using Microsoft.Win32; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy.TextView { diff --git a/ILSpy/Commands/SortAssemblyListCommand.cs b/ILSpy/Commands/SortAssemblyListCommand.cs index 29cd8ae05..110a60b8a 100644 --- a/ILSpy/Commands/SortAssemblyListCommand.cs +++ b/ILSpy/Commands/SortAssemblyListCommand.cs @@ -21,7 +21,7 @@ using System.Collections.Generic; using ICSharpCode.ILSpy.Properties; using ICSharpCode.ILSpyX; -using ICSharpCode.TreeView; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy { diff --git a/ILSpy/ContextMenuEntry.cs b/ILSpy/ContextMenuEntry.cs index 73aa3ba73..9ce4416a2 100644 --- a/ILSpy/ContextMenuEntry.cs +++ b/ILSpy/ContextMenuEntry.cs @@ -28,7 +28,8 @@ using System.Windows.Media; using ICSharpCode.AvalonEdit; using ICSharpCode.ILSpy.TextView; using ICSharpCode.ILSpyX.Search; -using ICSharpCode.TreeView; +using ICSharpCode.ILSpy.Controls.TreeView; +using ICSharpCode.ILSpyX.TreeView; namespace ICSharpCode.ILSpy { diff --git a/SharpTreeView/Converters.cs b/ILSpy/Controls/TreeView/Converters.cs similarity index 97% rename from SharpTreeView/Converters.cs rename to ILSpy/Controls/TreeView/Converters.cs index 87c31ee37..401d9026c 100644 --- a/SharpTreeView/Converters.cs +++ b/ILSpy/Controls/TreeView/Converters.cs @@ -22,7 +22,7 @@ using System.Windows; using System.Windows.Data; using System.Windows.Markup; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { public class CollapsedWhenFalse : MarkupExtension, IValueConverter { diff --git a/SharpTreeView/EditTextBox.cs b/ILSpy/Controls/TreeView/EditTextBox.cs similarity index 96% rename from SharpTreeView/EditTextBox.cs rename to ILSpy/Controls/TreeView/EditTextBox.cs index 965c035c8..0f37b8b56 100644 --- a/SharpTreeView/EditTextBox.cs +++ b/ILSpy/Controls/TreeView/EditTextBox.cs @@ -20,7 +20,9 @@ using System.Windows; using System.Windows.Controls; using System.Windows.Input; -namespace ICSharpCode.TreeView +using ICSharpCode.ILSpyX.TreeView; + +namespace ICSharpCode.ILSpy.Controls.TreeView { class EditTextBox : TextBox { diff --git a/SharpTreeView/ExtensionMethods.cs b/ILSpy/Controls/TreeView/ExtensionMethods.cs similarity index 97% rename from SharpTreeView/ExtensionMethods.cs rename to ILSpy/Controls/TreeView/ExtensionMethods.cs index 6ae130d25..410169272 100644 --- a/SharpTreeView/ExtensionMethods.cs +++ b/ILSpy/Controls/TreeView/ExtensionMethods.cs @@ -22,7 +22,7 @@ using System.Linq; using System.Windows; using System.Windows.Media; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { static class ExtensionMethods { diff --git a/SharpTreeView/GeneralAdorner.cs b/ILSpy/Controls/TreeView/GeneralAdorner.cs similarity index 97% rename from SharpTreeView/GeneralAdorner.cs rename to ILSpy/Controls/TreeView/GeneralAdorner.cs index e1188bf41..4e75b6352 100644 --- a/SharpTreeView/GeneralAdorner.cs +++ b/ILSpy/Controls/TreeView/GeneralAdorner.cs @@ -20,7 +20,7 @@ using System.Windows; using System.Windows.Documents; using System.Windows.Media; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { public class GeneralAdorner : Adorner { diff --git a/SharpTreeView/InsertMarker.cs b/ILSpy/Controls/TreeView/InsertMarker.cs similarity index 96% rename from SharpTreeView/InsertMarker.cs rename to ILSpy/Controls/TreeView/InsertMarker.cs index 7bbc6bb27..11ecde55c 100644 --- a/SharpTreeView/InsertMarker.cs +++ b/ILSpy/Controls/TreeView/InsertMarker.cs @@ -19,7 +19,7 @@ using System.Windows; using System.Windows.Controls; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { public class InsertMarker : Control { diff --git a/SharpTreeView/LinesRenderer.cs b/ILSpy/Controls/TreeView/LinesRenderer.cs similarity index 98% rename from SharpTreeView/LinesRenderer.cs rename to ILSpy/Controls/TreeView/LinesRenderer.cs index 66aac78f8..ca62d3b31 100644 --- a/SharpTreeView/LinesRenderer.cs +++ b/ILSpy/Controls/TreeView/LinesRenderer.cs @@ -20,7 +20,7 @@ using System.Diagnostics; using System.Windows; using System.Windows.Media; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { class LinesRenderer : FrameworkElement { diff --git a/SharpTreeView/SharpGridView.cs b/ILSpy/Controls/TreeView/SharpGridView.cs similarity index 97% rename from SharpTreeView/SharpGridView.cs rename to ILSpy/Controls/TreeView/SharpGridView.cs index 9487d936d..c48f0d3a1 100644 --- a/SharpTreeView/SharpGridView.cs +++ b/ILSpy/Controls/TreeView/SharpGridView.cs @@ -19,7 +19,7 @@ using System.Windows; using System.Windows.Controls; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { public class SharpGridView : GridView { diff --git a/SharpTreeView/SharpTreeNodeView.cs b/ILSpy/Controls/TreeView/SharpTreeNodeView.cs similarity index 98% rename from SharpTreeView/SharpTreeNodeView.cs rename to ILSpy/Controls/TreeView/SharpTreeNodeView.cs index 30c8c13a1..a7cca8838 100644 --- a/SharpTreeView/SharpTreeNodeView.cs +++ b/ILSpy/Controls/TreeView/SharpTreeNodeView.cs @@ -16,7 +16,6 @@ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -using System; using System.ComponentModel; using System.Diagnostics; using System.Windows; @@ -24,7 +23,9 @@ using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Media; -namespace ICSharpCode.TreeView +using ICSharpCode.ILSpyX.TreeView; + +namespace ICSharpCode.ILSpy.Controls.TreeView { public class SharpTreeNodeView : Control { diff --git a/SharpTreeView/SharpTreeView.cs b/ILSpy/Controls/TreeView/SharpTreeView.cs similarity index 99% rename from SharpTreeView/SharpTreeView.cs rename to ILSpy/Controls/TreeView/SharpTreeView.cs index 92e969e46..3d4e3e7e6 100644 --- a/SharpTreeView/SharpTreeView.cs +++ b/ILSpy/Controls/TreeView/SharpTreeView.cs @@ -28,9 +28,9 @@ using System.Windows.Documents; using System.Windows.Input; using System.Windows.Threading; -using ICSharpCode.TreeView.PlatformAbstractions.WpfWindows; +using ICSharpCode.ILSpyX.TreeView; -namespace ICSharpCode.TreeView +namespace ICSharpCode.ILSpy.Controls.TreeView { public class SharpTreeView : ListView { diff --git a/SharpTreeView/Themes/Generic.xaml b/ILSpy/Controls/TreeView/SharpTreeView.xaml similarity index 99% rename from SharpTreeView/Themes/Generic.xaml rename to ILSpy/Controls/TreeView/SharpTreeView.xaml index 5d3109b35..6e87b9e67 100644 --- a/SharpTreeView/Themes/Generic.xaml +++ b/ILSpy/Controls/TreeView/SharpTreeView.xaml @@ -1,6 +1,6 @@