0
WPFアプリケーションでは、SecureString
をパラメータとして受け入れるログインコマンドがありました。私はxamlコンバーターを使用して、パスワードボックスの値をコマンドに渡しました。xbindイベントハンドラにパラメータを渡す
<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を使ってイベントハンドラにパラメータを渡すことはできますか?