Guest User

Untitled

a guest
Aug 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. private void Window_MouseDown(object sender, MouseButtonEventArgs e)
  2. {
  3. Point point = PointToScreen(Mouse.GetPosition(this));
  4. RisuemPryamougolnik(point.X, point.Y);
  5. }
  6.  
  7. private void RisuemPryamougolnik(double x,double y)
  8. {
  9. Rectangle rect = new Rectangle();
  10. rect.Height = 50;
  11. rect.Width = 50;
  12. // rect.Fill = Brushes.Aqua;
  13. rect.Stroke = Brushes.Aqua;
  14. rect.StrokeThickness = 1;
  15. canvas.Children.Add(rect);
  16. Canvas.SetLeft(rect, x);
  17. Canvas.SetTop(rect, y);
  18.  
  19. }
Add Comment
Please, Sign In to add comment