.NET/WPF 2D 썸네일형 리스트형 WPF Interactive 2D Drawing public partial class MainWindow : Window { private List paths = new List(); private Point startPoint = new Point(); private Shape rubberBand = null; Point currentPoint = new Point(); private bool isDragging = false; private bool isDown = false; private Path originalElement = new Path(); private Path movingElement = new Path(); private Path path1 = new Path(); private Path path2 = new Path(); pri.. 더보기 WPF 2D Geometry and Mini-Language reference : Practical WPF Graphics Programming 더보기 WPF 2D Bezier Curve reference : Practical WPF Graphics Programming 더보기 WPF 2D PathGeometry Class reference : Practical WPF Graphics Programming 더보기 WPF 2D Combined Geometry reference : Practical WPF Graphics Programming 더보기 WPF 2D Geometry Group reference : Practical WPF Graphics Programming 더보기 WPF Geometry and 2D Drawing reference : Practical WPF Graphics Programming 더보기 WPF 2D Composite Transforms TransformGroup tg = new TransformGroup(); tg.Children.Add(ScaleTransform(2, 3)); tg.Children.Add(TranslateTransform(100, -100)); tg.Children.Add(RotateTransform(45)); tg.Children.Add(SkewTransform(30, 45)); Rectangle.RenderTransform = tg; reference : Practical WPF Graphics Programming 더보기 이전 1 2 3 다음