new Image()
.WithZoomFactor(0.75f)
.PlacedIn(canvas1).At(0, 0)
.WithUrl("flower2.jpg");
new Image()
.WithZoomFactor(0.75f)
.PlacedIn(stackPanel2)
.WithUrl("flower1.jpg");
new Label()
.WithText("Dandelion (lat. Taraxacum officinale)")
.PlacedIn(canvas2).At(50, 200);
// This should not compile - PlaceIn() is in canvas and is not followed by .At()..
// new Image().PlacedIn(canvas2).WithUrl("flower2.jpg");
new Image()
.WithZoomFactor(0.75f)
.PlacedIn(canvas1).At(0, 0)
.WithUrl("flower2.jpg");
new Image()
.WithZoomFactor(0.75f)
.PlacedIn(stackPanel2)
.WithUrl("flower1.jpg");
new Label()
.WithText("Dandelion (lat. Taraxacum officinale)")
.PlacedIn(canvas2).At(50, 200);
// This should not compile - PlaceIn() is in canvas and is not followed by .At()..
// new Image().PlacedIn(canvas2).WithUrl("flower2.jpg");