Browse Source

Make it run

Equbuxu 3 years ago
parent
commit
1191f50ddd

+ 0 - 1
src/PixiEditorPrototype/MainWindow.xaml

@@ -8,7 +8,6 @@
         mc:Ignorable="d"
         mc:Ignorable="d"
         Title="MainWindow" Height="450" Width="800">
         Title="MainWindow" Height="450" Width="800">
     <DockPanel>
     <DockPanel>
-        <Button DockPanel.Dock="Top">Create a new document</Button>
         <views:DocumentView DataContext="{Binding Document}"></views:DocumentView>
         <views:DocumentView DataContext="{Binding Document}"></views:DocumentView>
     </DockPanel>
     </DockPanel>
 </Window>
 </Window>

+ 0 - 4
src/PixiEditorPrototype/ViewModels/DocumentViewModel.cs

@@ -3,7 +3,6 @@ using ChangeableDocument.Actions;
 using PixiEditorPrototype.Models;
 using PixiEditorPrototype.Models;
 using System.ComponentModel;
 using System.ComponentModel;
 using System.Windows;
 using System.Windows;
-using System.Windows.Media.Imaging;
 
 
 namespace PixiEditorPrototype.ViewModels
 namespace PixiEditorPrototype.ViewModels
 {
 {
@@ -27,9 +26,6 @@ namespace PixiEditorPrototype.ViewModels
         public RelayCommand? DeleteStructureMemberCommand { get; }
         public RelayCommand? DeleteStructureMemberCommand { get; }
         public RelayCommand? ChangeSelectedItemCommand { get; }
         public RelayCommand? ChangeSelectedItemCommand { get; }
 
 
-        public WriteableBitmap FinalBitmap
-        {
-        }
 
 
         public DocumentViewModel()
         public DocumentViewModel()
         {
         {

+ 1 - 1
src/StructureRenderer/Renderer.cs

@@ -13,7 +13,7 @@ namespace StructureRenderer
 
 
         public async Task<List<IChangeInfo>> ProcessChanges(IReadOnlyList<IChangeInfo> changes)
         public async Task<List<IChangeInfo>> ProcessChanges(IReadOnlyList<IChangeInfo> changes)
         {
         {
-
+            throw new NotImplementedException();
         }
         }
     }
     }
 }
 }