I have this Passwordbox with this trigger :
<PasswordBox>
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="PasswordChanged">
            <i:InvokeCommandAction Command="{Binding PasswordChanged}" />
        </i:EventTrigger>
    </i:Interaction.Triggers>
</PasswordBox>
How can I, in my RelayCommand, get the content of my PasswordBox?
This is my relay command :
PasswordChanged = new RelayCommand<object>(param => this.GoPasswordChanged());
private void GoPasswordChanged()
{      
}
 
    