This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// *************************** | |
// SOURCE - https://github.com/hassan-theitguy/WpfDrawingApp/blob/1b21dcc4ef3da2fa15e26087d4087d135139f7be/WpfDrawingApp/MainWindow.xaml.cs | |
// *************************** | |
// If I render the canvas directly the result includes the left menu area (and is blank). | |
// Got the idea from online to copy to a DrawingVisual and then render that. | |
DrawingVisual Drawing = new DrawingVisual(); | |
// How come DrawingArea width is of type double? |