'xaml The type 'Button' does not support direct content
Solution 1:[1]
Try to use Grid inside the Button.Content element.
<Button>
<Button.Content>
<Grid>
</Grid>
</Button.Content>
</Button>
Resources:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | user2250152 |


