void btnCrearCirculo_Click(object sender, RoutedEventArgs e) { LeerValores(); _contexto = new Contexto(new Circulo(_coordX, _coordY, _largo), this); _contexto.DibujarFigura(); }
void btnCrearEstrella_Click(object sender, RoutedEventArgs e) { LeerValores(); _contexto = new Contexto(new Estrella(_coordX, _coordY, _largo), this); _contexto.DibjarFigura(); }