为什么我的热敏打印机没有';不要使用WPF打印我的数据

为什么我的热敏打印机没有';不要使用WPF打印我的数据,wpf,c#-4.0,crystal-reports,thermal-printer,Wpf,C# 4.0,Crystal Reports,Thermal Printer,我有热敏打印机“Xprinter model X365B”,我用USB将它插入我的电脑,我安装了驱动程序,我正试图打印一些来自crystal report的条形码,它不打印我的文本,只是一些符号和中文字母,我不知道为什么,我正在谷歌搜索,我没有找到任何解决方案,所以请提供帮助 int porductid = Convert.ToInt32(CompoDepart.SelectedValue); BarcodeLabelTableAdapter barco

我有热敏打印机“Xprinter model X365B”,我用USB将它插入我的电脑,我安装了驱动程序,我正试图打印一些来自crystal report的条形码,它不打印我的文本,只是一些符号和中文字母,我不知道为什么,我正在谷歌搜索,我没有找到任何解决方案,所以请提供帮助

            int porductid = Convert.ToInt32(CompoDepart.SelectedValue);

        BarcodeLabelTableAdapter barcodeLabelTableAdapter = new BarcodeLabelTableAdapter();
        DataSet1.BarcodeLabelDataTable tabel = barcodeLabelTableAdapter.GetData(porductid);
        //report name

        BarcodeLabelReport barcodeLabelReport = new BarcodeLabelReport();
        barcodeLabelReport.SetDataSource(tabel.DefaultView);

        SAPBusinessObjects.WPF.Viewer.ViewerCore view = crystalReportViewer1.ViewerCore;
        view.ReportSource = barcodeLabelReport;
这是我的报告预览