私はUWPに慣れていませんが、私はこれを見つけましたexample。
これは、スマートカードリーダーのインスタンスを作成:
private SmartCardReader reader = provisioning.SmartCard.Reader;
とそれにCardAdded
ハンドラを追加する:
reader.CardAdded += HandleCardAdded;
このようHandlerCardAdded
に見える:
void HandleCardAdded(SmartCardReader sender, CardAddedEventArgs args)
{
// This event handler will not be invoked on the UI thread. Hence,
// to perform UI operations we need to post a lambda to be executed
// back on the UI thread; otherwise we may access objects which
// are not marshalled for the current thread, which will result in an
// exception due to RPC_E_WRONG_THREAD.
uiContext.Post((object ignore) =>
{
rootPage.NotifyUser("Card added to reader " + reader.Name + ".", NotifyType.StatusMessage);
}, null);
}
はこれがあなたのお役に立てば幸いです少し。