Exemplo n.º 1
0
 public Panel(string name)
     : base(name)
 {
     Dockable = true;
     OnResize += Panel_OnResize;
     droppableOptions = new DroppableOptions()
     {
         Scope = "draggable",
         OnActivate = new jQueryApi.UI.jQueryUIEventHandler<DropActivateEvent>(OnActive),
         OnDeactivate = new jQueryApi.UI.jQueryUIEventHandler<DropDeactivateEvent>(OnDeactivate),
         OnDrop = new jQueryApi.UI.jQueryUIEventHandler<DropEvent>(OnDrop),
         OnOut = new jQueryApi.UI.jQueryUIEventHandler<jQueryObject>(OnOut),
         OnOver = new jQueryApi.UI.jQueryUIEventHandler<DropOverEvent>(OnOver)
     };
     CssClass = " ";
     //			Margin = "
     Position = "absolute";
 }
Exemplo n.º 2
0
 public static DroppableObject Droppable(this jQueryObject q, DroppableOptions options)
 {
     return(null);
 }
 public static DroppableObject Droppable(this jQueryObject q, DroppableOptions options) {
     return null;
 }
Exemplo n.º 4
0
 public DroppableObject Droppable(DroppableOptions options) {
     return null;
 }
 public DroppableObject Droppable(DroppableOptions options)
 {
     return(null);
 }