found this function online, which works great... except I can't figure out how to default it to print in landscape.
private void PrintClick(object sender, RoutedEventArgs e)
{
PrintDialog dialog = new PrintDialog();
if (dialog.ShowDialog() == true)
{ dialog.PrintVisual(_PrintCanvas, "My Canvas"); }
}
How does one actually set the default to print my wpf content to landscape mode?
(Visual)mytabs.SelectedContent
into myprint.printVisual()
method. Where exactly would I stick mymytabs.SelectedContent
in the answer you pointed to? – Vitebsk