Advertisement
Guest User

Untitled

a guest
May 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <Window x:Class="IOweYou.Frontend.HomeWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:IOweYou.Frontend"
  7. mc:Ignorable="d"
  8. Title="HomeWindow" Height="350" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="100*"></ColumnDefinition>
  12. <ColumnDefinition Width="300*"></ColumnDefinition>
  13. </Grid.ColumnDefinitions>
  14. <StackPanel Grid.Column="0" Margin="20">
  15. <ComboBox Margin="0,0,0,20"/>
  16. <Label Content="Amount" FontSize="15"/>
  17. <TextBox Height="30" Margin="0,0,0,20"/>
  18. <Button Content="Register debt!" Height="30" FontSize="15"/>
  19. </StackPanel>
  20. <DockPanel Grid.Column="1">
  21. <Button Content="Vier your debts" Height="30" Width="150" FontSize="15" HorizontalAlignment="Right" Margin="20" DockPanel.Dock="Top"/>
  22. <Label Content="Debtors:" FontSize="15" DockPanel.Dock="Left"/>
  23. <Label Content="Total: €0" FontSize="15" DockPanel.Dock="Right" />
  24. <DataGrid/>
  25. </DockPanel>
  26. </Grid>
  27. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement