Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 VS 2015 中单击按钮时使用蓝牙扫描仪扫描条形码,但我想编写一个代码,当我尝试扫描任何条形码时,它会随时检测我的蓝牙设备,而不仅仅是单击按钮.
使用与按钮中几乎相同的代码,您可以: - 连接到您的设备一次 - 连续读取蓝牙流以获取任务中的条形码
await Task.Run(() => { while(true { //Read your BT stream } });