我想通过蓝牙打印机从 Windows 移动应用程序打印。我正在做的是对 COM 端口进行硬编码,如下所示...
SerialPort comPort1 = new SerialPort("COM5", 57600, Parity.None, 8, StopBits.One);
comPort1.Open();
//Some thing to pint
//comPort1.WriteLine("PRINT");
System.Threading.Thread.Sleep(500);
comPort1.Close();
方法不正确,我想搜索可用的蓝牙打印机应用程序并与之连接。否则显示正确的错误消息 [“找不到蓝牙设备/所选设备不是打印机”]。请帮我找到这个,任何人都可以指导我这样做吗?