你好
我用了你介绍的InThehand控件开发的 蓝牙打印功能
可现在遇到这样一个问题
我在Guid service=InTheHand.Net.Bluetooth.BluetoothService.SerialPort 方法
myStream = Client.GetStream();
string mystring="123456";
myStream.Write(Encoding.ASCII.GetBytes(mystring), 0, Encoding.ASCII.GetBytes(mystring).Length)后
第一遍打印,显示123456 12 第二遍打印显示 3456 1234 第三遍打印显示 5612 3456
为什么不显示123456?
而是把它重复显示啊?
有什么地方需要改的啊?