SecureStringWPF アプリケーションでは、パラメーターとして aを受け入れるログイン コマンドがありました。xaml コンバーターを使用して、パスワード ボックスからコマンドに値を渡しました。
<PasswordBox
Name="PasswordBox"
Grid.Row="2"
Grid.Column="2" />
<Button
Grid.Row="3"
Grid.Column="3"
Command="{Binding LoginCommand}"
Content="{x:Static p:Resources.LoginView_LoginButtonContent}">
<Button.CommandParameter>
<MultiBinding
Converter="{c:PasswordBoxConverter}"
Mode="TwoWay"
UpdateSourceTrigger="PropertyChanged">
<Binding ElementName="PasswordBox" />
</MultiBinding>
</Button.CommandParameter>
</Button>
xbindを使用してUWPで同様のことをしたいと思います。xbind を使用してパラメーターをイベント ハンドラーに渡すことはできますか?