Wiele parametrów polecenia wpf obiekt przycisku

Jak mogę wysłać wiele parametrów zButton wWPF? Jestem w stanie wysłać pojedynczy parametr, który jest wartościąTextBox prawidłowo. Oto kod.

XAML

<TextBox Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="133,22,0,0"     Name="textBox1" VerticalAlignment="Top" Width="120" />
<Button Content="Button" Grid.Row="1" Height="23" Command="{Binding Path=CommandClick}" CommandParameter="{Binding Text,ElementName=textBox1}" HorizontalAlignment="Left" Margin="133,62,0,0" Name="button1" VerticalAlignment="Top" Width="75" />

Code behind

public ICommand CommandClick { get; set; }

this.CommandClick = new DelegateCommand<object>(AddAccount);

private void AddAccount(object obj)
{
    //custom logic
}

questionAnswers(2)

yourAnswerToTheQuestion