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將參數傳遞給事件處理程序嗎?