Advertisement
Guest User

hej

a guest
Dec 11th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <StackPanel Orientation="Horizontal"
  2. HorizontalAlignment="Center"
  3. Height="100"
  4. Width="432"
  5. Margin="-12,0,0,0"
  6. >
  7.  
  8. <StackPanel Orientation="Vertical"
  9. Height="75"
  10. Width="432"
  11. HorizontalAlignment="Left">
  12.  
  13. <TextBlock Text="Fornavn: "
  14. Foreground="White"
  15. FontSize="18"
  16. Margin="5,0,0,0">
  17. </TextBlock>
  18.  
  19. <TextBlock
  20. Text="{Binding FirstName}"
  21. Height="50"
  22. Foreground="White"
  23. FontSize="18"
  24. Margin="85,-27,0,0"
  25. />
  26.  
  27. <TextBlock Text="Efternavn: "
  28. Height="50"
  29. Foreground="White"
  30. FontSize="18"
  31. Margin="5,0,0,0"
  32. />
  33.  
  34. <TextBlock Height="50"
  35. Text="{Binding LastName}"
  36. Foreground="White"
  37. FontSize="18"
  38. Margin="100,-50,0,0"
  39. />
  40.  
  41.  
  42.  
  43.  
  44.  
  45. </StackPanel>
  46. <StackPanel>
  47. <Line X1="0"
  48. X2="365"
  49. Stroke="#66fcf1"
  50. Margin="0,0,0,0"
  51. VerticalAlignment="Bottom"
  52. HorizontalAlignment="Left"/>
  53. </StackPanel>
  54.  
  55.  
  56.  
  57.  
  58. </StackPanel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement