示例#1
0
 /// <summary>
 /// Clears this instance.
 /// </summary>
 public void Clear()
 {
     UISleepHelper.Do(() => Children.Clear());
 }
示例#2
0
 /// <summary>
 /// Adds the specified content.
 /// </summary>
 /// <param name="content">The content.</param>
 public void Add(IControl content)
 {
     UISleepHelper.Do(() => Children.Add(content as UIElement));
 }