Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <Grid>
  2. <Grid.ColumnDefinitions>
  3. <ColumnDefinition/>
  4. <ColumnDefinition/>
  5. <ColumnDefinition/>
  6. </Grid.ColumnDefinitions>
  7.  
  8. <Grid.RowDefinitions>
  9. <RowDefinition Height="45" />
  10. <RowDefinition Height="45" />
  11. <RowDefinition Height="45"/>
  12. <RowDefinition Height="45"/>
  13. </Grid.RowDefinitions>
  14.  
  15. <Label Grid.Row="0" Grid.Column="0" Content="Yksikköhinta"
  16. FontWeight="Bold" FontSize="17" Height="30" Foreground="CadetBlue"></Label>
  17. <Label Grid.Row="1" Grid.Column="0" Content="Kpl"
  18. FontWeight="Bold" FontSize="17" Height="30" Foreground="CadetBlue"></Label>
  19. <Label Grid.Row="2" Grid.Column="0" Content="Ostoksen hinta"
  20. FontWeight="Bold" FontSize="17" Height="30" Foreground="CadetBlue"></Label>
  21. <TextBox Name="txtYksikkoHinta" Grid.Row="0" Grid.Column="1"
  22. FontWeight="Bold" FontSize="17" Height="30" Width="200"></TextBox>
  23. <TextBox Name="txtKplMaara" Grid.Row="1" Grid.Column="1"
  24. FontWeight="Bold" FontSize="17" Height="30" Width="200"></TextBox>
  25. <TextBox Name="txtOstoksenHinta" Grid.Row="2" Grid.Column="1"
  26. FontWeight="Bold" FontSize="17" Height="30" Width="200"></TextBox>
  27. <Button Name="btnLaskeHinta" Grid.Row="1" Grid.Column="2" Content="Valmis"
  28. FontWeight="Bold" FontSize="17" Height="30" Width="200"></Button>
  29. <Label Grid.Row="4" Grid.Column="0" Content="Ostokset yht."
  30. FontWeight="Bold" FontSize="17" Height="30" Foreground="CadetBlue"></Label>
  31. <Label Name="lblLaskettuHinta" Grid.Row="3" Grid.Column="1" Content=""
  32. FontWeight="Bold" FontSize="17" Height="30" Width="200" Background="LightYellow"></Label>
  33. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement