JBTALKS.CC

标题: 我的code里面,那端可以排版??就是改每条columns的大小,位置。。 [打印本页]

作者: kenji0523    时间: 2010-6-10 08:03 PM
标题: 我的code里面,那端可以排版??就是改每条columns的大小,位置。。
PrintDialog MyPrintDialog = new PrintDialog();
            MyPrintDialog.AllowCurrentPage = false;
            MyPrintDialog.AllowPrintToFile = false;
            MyPrintDialog.AllowSelection = false;
            MyPrintDialog.AllowSomePages = false;
            MyPrintDialog.ShowHelp = false;
            MyPrintDialog.ShowNetwork = false;

            if (MyPrintDialog.ShowDialog() != DialogResult.OK)
                return false;

            printDocument1.DocumentName = "Client Reprots";
            printDocument1.PrinterSettings = MyPrintDialog.PrinterSettings;
            printDocument1.DefaultPageSettings = MyPrintDialog.PrinterSettings.DefaultPageSettings;
            printDocument1.DefaultPageSettings.Margins = new Margins(40, 40, 40, 40);

            if (MessageBox.Show("Do you want the report to be centered on the page", "InvoiceManager - Center on Page", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                MyDataGridViewPrinter = new DataGridViewPrinter(dataGridView1, printDocument1, true, true, "Client", new Font("Tahoma", 18, FontStyle.Bold, GraphicsUnit.Point), Color.Black, true);
            }
            else
            {
                MyDataGridViewPrinter = new DataGridViewPrinter(dataGridView1, printDocument1, false, true, "Client", new Font("Tahoma", 18, FontStyle.Bold, GraphicsUnit.Point), Color.Black, true);
            }
            return true;
作者: AhPang    时间: 2010-6-10 08:43 PM
PrintDialog MyPrintDialog = new PrintDialog();
            MyPrintDialog.AllowCurrentPage = false;
...
kenji0523 发表于 2010-6-10 08:03 PM



MyDataGridViewPrinter = new DataGridViewPrinter(dataGridView1, printDocument1, true, true, "Client", new Font("Tahoma", 18, FontStyle.Bold, GraphicsUnit.Point), Color.Black, true);

modify gridview1.你去study gridview的structure。
作者: kenji0523    时间: 2010-6-10 09:28 PM
ok!!谢谢!!




欢迎光临 JBTALKS.CC (https://jbtalks.my/) Powered by Discuz! X2.5