我正在为我的一个项目使用 .Net 框架版本 1.12 的 POS。
Microsoft POS for .NET 是一个类库,它是 Microsoft Windows Embedded for Point of Service 的一部分。 http://msdn.microsoft.com/en-us/library/ms828083%28v=winembedded.10%29.aspx
private PosPrinter GetReceiptPrinter()
{
PosExplorer posExplorer = new PosExplorer(this);
DeviceInfo receiptPrinterDevice = posExplorer.GetDevice(DeviceType.PosPrinter);
return (PosPrinter)posExplorer.CreateInstance(receiptPrinterDevice);
}
以上是查找打印机的示例代码。现在我的问题是 POS 无法检测到打印机,而只能在我运行应用程序时打开带有数据的模拟器。
谁能帮帮我吗 ?