for example this code
<Button
Text="Go Back"
BackgroundColor="#2196F3"
TextColor="{StaticResource TextColor}"
CornerRadius="5"
Clicked="OnGoBackClicked"
Padding="10,5"
Margin="10,0,10,10"></Button>
format to:
<Button
Text="Go Back"
BackgroundColor="#2196F3"
TextColor="{StaticResource TextColor}"
CornerRadius="5"
Clicked="OnGoBackClicked"
Padding="10,5"
Margin="10,0,10,10" />
now when i press ^I (Control + I) it does not do that maybe im missing some setting thanks for any help