Beispiel #1
0
        public OpenPrinterPage(string continueButtonText, Action <PrinterConfig> printerLoaded = null)
            : base(continueButtonText)
        {
            this.printerLoaded = printerLoaded;

            HardwareTreeView.CreatePrinterProfilesTree(rootPrintersNode, theme);
        }
Beispiel #2
0
        public SelectActivePrinterPage(string continueButtonText, Action <PrinterConfig> printerSelected)
            : base(continueButtonText)
        {
            this.printerSelected = printerSelected;

            HardwareTreeView.CreateOpenPrintersTree(rootPrintersNode, theme);
        }