Export und Import moved

Export und Import funktion sind nun unter Projekteinstellungen aufrufbar
This commit is contained in:
2023-04-24 13:42:13 +02:00
parent 76731c3464
commit 4f99a38990
6 changed files with 33 additions and 22 deletions

View File

@@ -37,7 +37,12 @@
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding Strasse}" />
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding Ort}" />
<Button Grid.ColumnSpan="2" Grid.Row="4" Content="Speichern" Command="{Binding Speichern}" />
<StackPanel Grid.ColumnSpan="2" Grid.Row="4">
<Button Content="Speichern" Command="{Binding Speichern}" />
<Button Content="Schächte aus CSV Importieren" Command="{Binding SchachtImportCommand}" />
<Button Content="Projektdaten nach Schnittstelle exportieren" Command="{Binding DatenExportCommand}" />
</StackPanel>
<ContentPresenter Grid.Column="3" Grid.RowSpan="6" Content="{Binding ProjektSettingsViewModel}" />