プロジェクトの 1 つで .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 がプリンターを検出できず、アプリケーションを実行したときにデータを含むシミュレーターしか開かないことです。
誰でも私を助けてもらえますか?