Ejemplo n.º 1
0
        /// <summary>
        ///
        /// </summary>
        public DragZone.Builder DragZone(DragZone.Config config)
        {
#if MVC
            return(new DragZone.Builder(new DragZone(config)
            {
                ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null
            }));
#else
            return(new DragZone.Builder(new DragZone(config)));
#endif
        }
Ejemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 public Builder(DragZone.Config config) : base(new DragZone(config))
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 public DragZone.Builder DragZone(DragZone.Config config)
 {
     return(new DragZone.Builder(new DragZone(config)));
 }