我打开一个PrintDialog框,然后使用它设置打印信息。

 DialogResult result = PrintDialog.ShowDialog();


现在,当我单击“应用”按钮时,我想保存printDialog的信息。而且当我再次打开printDialog框时,以前设置的设置不应更改。

最佳答案

将该信息存储在某个文件中,下次打开应用程序时,请检查该文件是否包含必需的信息,如果包含该信息,则在应用程序中使用该信息,否则从用户那里获取它。

string filename = "file.txt";
        PrintDialog pd = new PrintDialog();
        if (File.ReadAllText(filename).Count() > 0)
        {
            //printer setting should be applied using this file
            //read the filename line by line and apply the setting
            pd.PrinterSettings.PrinterName=""; //line 1 of file..
            .
            .
            .
            .
        }
        else
        {

            DialogResult result = pd.ShowDialog();
            if (result == DialogResult.OK)
            {
                StreamWriter sw = new StreamWriter(filename);
                sw.WriteLine(pd.PrinterSettings.PrinterName);

                .
                .
                .
                .
                sw.Close();
            }
        }

关于c# - 保存PrintDialog配置以供下次打开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32945127/

10-10 10:25