Exemplo n.º 1
0
 /// <summary>
 /// Add the specified evas object to the list of children views.
 /// </summary>
 /// <param name="children">The extended class.</param>
 /// <param name="obj">Object to be added.</param>
 /// <param name="measureDelegate">Optional delegate which provides measurements for the added object.</param>
 public static void Add(this IList <View> children, EvasObject obj, MeasureDelegate measureDelegate = null)
 {
     children.Add(obj.ToView(measureDelegate));
 }