Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Line line2 = new Line();
  2. line2.Stroke = Brushes.LightSteelBlue;
  3.  
  4. line2.X1 = 1;
  5. line2.X2 = 50;
  6. line2.Y1 = 1;
  7. line2.Y2 = 50;
  8.  
  9. line2.StrokeThickness = 200;
  10. ActualContext.Children.Add(line2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement