久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

C#打印dataGridView中的數(shù)據(jù)

 昵稱12149283 2013-04-28


這幾天,我研究了以下C#如何打印dataGridView中的數(shù)據(jù),在網(wǎng)上,、圖書館搜索和查閱了一些內(nèi)容,,現(xiàn)總結(jié)一下:

//執(zhí)行打印窗體中的數(shù)據(jù)操作

private void toolStripButton2_Click(object sender, EventArgs e)
        {

            printDialog1.ShowDialog();  //設(shè)置打印文檔
            printPreviewDialog1.Document = this.printDocument1;
            printPreviewDialog1.ShowDialog();
        }

//在窗體中繪制要打印的數(shù)據(jù)

private void printDocument1_PrintPage(object sender,System.Drawing.Printing.PrintPageEventArgs e)
        {
            //e.Graphics.DrawString(dataGridView1.Columns.ToString(), new Font("宋體", 10, FontStyle.Regular), Brushes.Black, 260, 400);
          
            int r = 0;
            int c = 20;
            for(int i=0;i<dt.Rows.Count;i++)
            {
              
                for(int j=0;j<dt.Columns.Count;j++)
                {
                  
                    e.Graphics.DrawString(dt.Rows[i][j].ToString(), new Font("宋體", 10, FontStyle.Regular), Brushes.Black, r, c);
                    r = r + 60;
                   
                }
                r = 0;
                c += 20;
               
            }
        }

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多