mirror of https://github.com/icsharpcode/ILSpy.git
5 changed files with 24 additions and 1 deletions
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
using ICSharpCode.TreeView.PlatformAbstractions; |
||||
|
||||
namespace ICSharpCode.ILSpy |
||||
{ |
||||
public class WpfWindowsTreeNodeImagesProvider : ITreeNodeImagesProvider |
||||
{ |
||||
public object Assembly => Images.Assembly; |
||||
} |
||||
} |
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
namespace ICSharpCode.TreeView.PlatformAbstractions |
||||
{ |
||||
public interface ITreeNodeImagesProvider |
||||
{ |
||||
object Assembly { get; } |
||||
} |
||||
} |
Loading…
Reference in new issue