From afe5b7a802592acb1942c606832bc36510810038 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sun, 15 Mar 2020 05:00:36 +0200 Subject: Started integration of Tango.FileSystem to FSE. --- .../Tango.FSE.Common/Controls/FileSystemControl.cs | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/Controls/FileSystemControl.cs') 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))); + } + } +} -- cgit v1.3.1