GridView.cs 306 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GenericDisplayCommand.Controls.V1
  5. {
  6. public class GridView : ViewGroup
  7. {
  8. /// <summary>
  9. /// how many columns of this grid has.
  10. /// </summary>
  11. public int NumColumns { get; set; }
  12. }
  13. }