diff options
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs')
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs new file mode 100644 index 000000000..dc1da7384 --- /dev/null +++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using Tango.FileSystem; + +namespace Tango.FSE.Common.Controls +{ + public class FileSystemControl : FileExplorerControl + { + static FileSystemControl() + { + DefaultStyleKeyProperty.OverrideMetadata(typeof(FileSystemControl), new FrameworkPropertyMetadata(typeof(FileSystemControl))); + } + } +} |
