Tag: fixedpage

在WPF中将图像添加到FixedPage

我希望能够用其他UIElements打印图像。 我有一个FixedPage实例,并试图像这样添加图像 // Basic printing stuff var printDialog = new PrintDialog(); var fixedDocument = new FixedDocument(); fixedDocument.DocumentPaginator.PageSize = new Size(printDialog.PrintableAreaWidth, printDialog.PrintableAreaHeight); FixedPage page = new FixedPage(); page.Width = fixedDocument.DocumentPaginator.PageSize.Width; page.Height = fixedDocument.DocumentPaginator.PageSize.Height; Image img = new Image(); // PrintIt my project’s name, Img folder var uriImageSource = new Uri(@”/PrintIt;component/Img/Stuff.png”, UriKind.RelativeOrAbsolute); img.Source = new BitmapImage(uriImageSource); img.Width […]