- view
- The subview to add.
This method is equivalent to UIView.AddSubview and is present to enable C# 3.0 to add subviews at creation time.
C# Example
var myView = new MyView (new RectangleF (0, 0, 320, 320)){
new ImageGallery (region [0]),
new ImageGallery (region [1]),
new UILabel (new RectangleF (10, 10, 200, 200)){
Text = "Images from our Trip"
}
};