我需要创建一些接口来从iButton读取数据。实际上它的工作方式是这样的:用户将带有磁铁的小吊坠应用于iButton设备 - >登录他。用户带走吊坠 - 退出。
我的问题是,我知道如何重写,简单:
public static void sp_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
if (sp.ReadLine() == "logout")
{
logoutUser();
}
else
{
//put data into nonstatic textbox from another window
// or raise some event which will listen to changes in data and put string into textbox
}
}
但是如何在数据!=“注销”时引发事件(例如A0019293881,作为密码)。