ここでは、{binding}と{binding Account}について混乱しています。単純な{binding}のみを使用する場合、以下のコードバインディングでプロパティ名を使用したバインディングは:Content="{Binding}"として発生します。
<Border Grid.Row="1" Grid.Column="0"
Style="{StaticResource MainBorderStyle}"
Background="{StaticResource ResourceListGradientBrush}"
BorderThickness="0,0,1,1"
Padding="0">
<StackPanel>
<HeaderedContentControl
Content="{Binding}"
ContentTemplate="{StaticResource CommandsTemplate}"/>
</StackPanel>
</Border>
以下のコードバインディングは次のように発生します
Text="{Binding Path=Name, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}"/>
なので、使い方や違いを知りたいです。よろしくお願いします。