Hello!
Please, I am absolutely new here and just started Could someone please, help me find a source on the net which explains well for beginners what mean x: Key and x:Name in following example:

Code:
<Grid>
      <Grid.Resources>
           <Style x:Key="PinkButton" TargetType="Button">
    
                 <Setter Property="Background" Value="Pink"/>
           </Style>
     </Grid.Resources>

      <Button
            x:Name="myButton"
            ...>
    
     </Button>
</Grid>
Is x sth similar like the kind of "object" that is being managed at the right moment?

Thanks a lot!