diff --git a/PartSource.Backoffice/App.xaml b/PartSource.Backoffice/App.xaml deleted file mode 100644 index db7a790..0000000 --- a/PartSource.Backoffice/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/PartSource.Backoffice/App.xaml.cs b/PartSource.Backoffice/App.xaml.cs deleted file mode 100644 index 5c05ff2..0000000 --- a/PartSource.Backoffice/App.xaml.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; - -namespace PartSource.Backoffice -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } -} diff --git a/PartSource.Backoffice/AssemblyInfo.cs b/PartSource.Backoffice/AssemblyInfo.cs deleted file mode 100644 index 427f202..0000000 --- a/PartSource.Backoffice/AssemblyInfo.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System.Windows; - -[assembly: ThemeInfo( - ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located - //(used if a resource is not found in the page, - // or application resource dictionaries) - ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located - //(used if a resource is not found in the page, - // app, or any theme specific resource dictionaries) -)] diff --git a/PartSource.Backoffice/Components/MenuBar.xaml b/PartSource.Backoffice/Components/MenuBar.xaml deleted file mode 100644 index b42c8ae..0000000 --- a/PartSource.Backoffice/Components/MenuBar.xaml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - diff --git a/PartSource.Backoffice/Components/MenuBar.xaml.cs b/PartSource.Backoffice/Components/MenuBar.xaml.cs deleted file mode 100644 index 953b933..0000000 --- a/PartSource.Backoffice/Components/MenuBar.xaml.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -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; - -namespace PartSource.Backoffice.Components -{ - /// - /// Interaction logic for MenuBar.xaml - /// - public partial class MenuBar : UserControl - { - public MenuBar() - { - InitializeComponent(); - } - - private void MenuItem_Click(object sender, RoutedEventArgs e) - { - // TODO: Check if any tasks are running - - Application.Current.MainWindow.Close(); - } - } -} diff --git a/PartSource.Backoffice/Components/ProgressDisplay.xaml b/PartSource.Backoffice/Components/ProgressDisplay.xaml deleted file mode 100644 index 3d818e2..0000000 --- a/PartSource.Backoffice/Components/ProgressDisplay.xaml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - Current Operation: - - - - - - diff --git a/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs b/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs deleted file mode 100644 index 754db5d..0000000 --- a/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -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; - -namespace PartSource.Backoffice.Components -{ - /// - /// Interaction logic for StatusBars.xaml - /// - public partial class ProgressDisplay : UserControl - { - public ProgressDisplay() - { - InitializeComponent(); - } - } -} diff --git a/PartSource.Backoffice/Components/TaskSetup.xaml b/PartSource.Backoffice/Components/TaskSetup.xaml deleted file mode 100644 index 0180e51..0000000 --- a/PartSource.Backoffice/Components/TaskSetup.xaml +++ /dev/null @@ -1,16 +0,0 @@ - - - - Metafield Groups: - - - - diff --git a/PartSource.Backoffice/Components/TaskSetup.xaml.cs b/PartSource.Backoffice/Components/TaskSetup.xaml.cs deleted file mode 100644 index 4c3ba81..0000000 --- a/PartSource.Backoffice/Components/TaskSetup.xaml.cs +++ /dev/null @@ -1,50 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -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; - -namespace PartSource.Backoffice.Components -{ - /// - /// Interaction logic for TaskSetup.xaml - /// - public partial class TaskSetup : UserControl - { - public IList SelectedTasks - { - get - { - IList selectedTasks = new List(); - - foreach (object control in ContentPanel.Children) - { - switch (control) - { - case CheckBox checkbox: - if (checkbox.IsChecked.GetValueOrDefault()) - { - selectedTasks.Add(checkbox.Name); - } - - break; - } - } - - return selectedTasks; - } - } - - public TaskSetup() - { - InitializeComponent(); - } - } -} diff --git a/PartSource.Backoffice/MainWindow.xaml b/PartSource.Backoffice/MainWindow.xaml deleted file mode 100644 index e93a7a7..0000000 --- a/PartSource.Backoffice/MainWindow.xaml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - -