From e67b44b7418b09433f8038d21a931f0b6307d104 Mon Sep 17 00:00:00 2001 From: SpoinkyNL Date: Thu, 2 Jan 2020 22:54:50 +0100 Subject: [PATCH] Some WIP stuff on the timeline --- src/Artemis.UI/Artemis.UI.csproj | 8 ++++ .../Timeline/TimelinePropertyView.xaml | 37 +++++++++++++++++++ .../Timeline/TimelinePropertyView.xaml.cs | 28 ++++++++++++++ .../Timeline/TimelinePropertyViewModel.cs | 13 +++++++ 4 files changed, 86 insertions(+) create mode 100644 src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml create mode 100644 src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml.cs create mode 100644 src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyViewModel.cs diff --git a/src/Artemis.UI/Artemis.UI.csproj b/src/Artemis.UI/Artemis.UI.csproj index 0850fc3d0..44a0f405f 100644 --- a/src/Artemis.UI/Artemis.UI.csproj +++ b/src/Artemis.UI/Artemis.UI.csproj @@ -172,6 +172,10 @@ TimelinePropertyRailView.xaml + + TimelinePropertyView.xaml + + ProfileLayerView.xaml @@ -318,6 +322,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile diff --git a/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml new file mode 100644 index 000000000..77538fd84 --- /dev/null +++ b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml @@ -0,0 +1,37 @@ + + + + + + Lorem ipsum dolor sit amet, consectetur adipisicing + + + + + \ No newline at end of file diff --git a/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml.cs b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml.cs new file mode 100644 index 000000000..1bb67c8d6 --- /dev/null +++ b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyView.xaml.cs @@ -0,0 +1,28 @@ +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; + +namespace Artemis.UI.Screens.Module.ProfileEditor.LayerProperties.Timeline +{ + /// + /// Interaction logic for TimelinePropertyView.xaml + /// + public partial class TimelinePropertyView : UserControl + { + public TimelinePropertyView() + { + InitializeComponent(); + } + } +} diff --git a/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyViewModel.cs b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyViewModel.cs new file mode 100644 index 000000000..7769d55bd --- /dev/null +++ b/src/Artemis.UI/Screens/Module/ProfileEditor/LayerProperties/Timeline/TimelinePropertyViewModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Stylet; + +namespace Artemis.UI.Screens.Module.ProfileEditor.LayerProperties.Timeline +{ + public class TimelinePropertyViewModel : PropertyChangedBase + { + } +} \ No newline at end of file