|
|
|
|
@ -10,8 +10,8 @@
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="96.08"/>
|
|
|
|
|
<RowDefinition Height="423.88"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
@ -24,7 +24,20 @@
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<StackPanel x:Name="Contact" Grid.Row="0" Grid.Column="0" Orientation="Vertical">
|
|
|
|
|
<TextBox x:Name="tbContactSearch" TextWrapping="NoWrap" Margin="10,5,10,5" TextAlignment="Center" TextChanged="TbContactSearch_TextChanged"/>
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="2*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel Grid.Column="0">
|
|
|
|
|
<TextBox x:Name="tbContactSearch" TextWrapping="NoWrap" Margin="10,5,10,5" TextAlignment="Center" TextChanged="TbContactSearch_TextChanged"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Column="1">
|
|
|
|
|
<Button x:Name="butReloadContacts" Content="Kontakte laden" Margin="10,5,10,5" Click="ButReloadContacts_Click" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<DataGrid x:Name="dgFoundContacts"
|
|
|
|
|
ItemsSource="{Binding Source=foundContacts}"
|
|
|
|
|
AutoGenerateColumns="True"
|
|
|
|
|
@ -82,9 +95,9 @@
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" Height="Auto" x:Name="gridMitte" Margin="10,5,10,5" Grid.RowSpan="2">
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<Button x:Name="butPasteQuote" Content="Angebot aus PriceSurfer einfügen" Margin="10,5,10,5" Click="ButPasteQuote_Click" />
|
|
|
|
|
<Button x:Name="butPasteQuote" Content="Angebot aus PriceSurfer erstellen" Margin="10,5,10,5" Click="ButPasteQuote_Click" />
|
|
|
|
|
<TextBlock x:Name="lblQuote" Text="Bitte Angebot einfügen." Height="150" Margin="10,5,10,5"/>
|
|
|
|
|
<DataGrid x:Name="dgLineItems" AutoGenerateColumns="True" Height="280" Margin="10,5,10,5" />
|
|
|
|
|
<DataGrid x:Name="dgLineItems" AutoGenerateColumns="True" Height="300" Margin="10,5,10,5" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|