14 lines
755 B
XML
14 lines
755 B
XML
<UserControl x:Class="Gremlin.MVVM.ShellView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:cal="http://www.caliburnproject.org"
|
|
xmlns:local="clr-namespace:Gremlin.MVVM">
|
|
<StackPanel Orientation="Vertical">
|
|
<local:AllContactsView cal:Bind.Model="{Binding AllContactsVM}" />
|
|
<local:QuoteView cal:Bind.Model="{Binding QuoteVM}" />
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button x:Name="CreateTex" Content="TexFile erzeugen" Margin="10,5,10,5"/>
|
|
<Button x:Name="CreatePDF" Content="PDF erzeugen" Margin="10,5,10,5"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl> |