字符串更改时引发事件

时间:2013-10-28 15:10:37

标签: wpf port

我需要创建一些接口来从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,作为密码)。

1 个答案:

答案 0 :(得分:1)

您可以创建自己的事件,然后在else子句中创建,然后创建一些方法来听取事件并执行您想要的操作。

有关活动的更多信息here