Esempio n. 1
0
 /// <summary>
 /// Generates the layout for the container
 /// </summary>
 /// <remarks>
 /// This is called automatically on the Container's LoadCompleted event, but can be called manually if needed.
 /// </remarks>
 /// <exception cref="AlreadyGeneratedException">specifies that the control was already generated</exception>
 public void Generate()
 {
     if (Generated)
     {
         throw new AlreadyGeneratedException();
     }
     topTable.Generate(this);
     Generated = true;
 }
Esempio n. 2
0
 /// <summary>
 /// Generates the layout for the container
 /// </summary>
 /// <remarks>
 /// This is called automatically on the Container's LoadCompleted event, but can be called manually if needed.
 /// </remarks>
 public void Generate()
 {
     Content   = topTable.Generate(this);
     Generated = true;
 }