'xaml The type 'Button' does not support direct content

XLS0502 error The type 'Button' does not support direct content

enter image description here

system.xaml and UIAutomationProvider have been added

enter image description here

the project was cleaned up and then rebuilt. But the problem has not disappeared.What should I do now?



Solution 1:[1]

Try to use Grid inside the Button.Content element.

<Button>
  <Button.Content>
    <Grid>
    </Grid>
  </Button.Content>
</Button>

Resources:

Content properties

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