상속: GridPanelBase.Config
예제 #1
0
        /// <summary>
        ///
        /// </summary>
        public PropertyGrid.Builder PropertyGrid(PropertyGrid.Config config)
        {
#if MVC
            return(new PropertyGrid.Builder(new PropertyGrid(config)
            {
                ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null
            }));
#else
            return(new PropertyGrid.Builder(new PropertyGrid(config)));
#endif
        }
예제 #2
0
 /// <summary>
 ///
 /// </summary>
 public Builder(PropertyGrid.Config config) : base(new PropertyGrid(config))
 {
 }
예제 #3
0
 /// <summary>
 ///
 /// </summary>
 public PropertyGrid.Builder PropertyGrid(PropertyGrid.Config config)
 {
     return(new PropertyGrid.Builder(new PropertyGrid(config)));
 }