Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <Button>
  2. <TextBlock>Hey <Bold>you</Bold>!!!</TextBlock>
  3. </Button>
  4.  
  5. <Button>
  6. <Button.Content>
  7. <TextBlock>Hey <Bold>you</Bold>!!!</TextBlock>
  8. </Button.Content>
  9. </Button>
  10.  
  11. <Grid>
  12. <Button Name="button1" Width="40" Height="40"
  13. Content="something" FontWeight="Bold" />
  14. </Grid>
  15.  
  16. private void ButtonClick(object sender, RoutedEventArgs e)
  17. {
  18. string buttonText = ((Button)sender).Content.ToString();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement