///<summary> This gets called when when the user runs this command.</summary>
        public override IRhinoCommand.result RunCommand(IRhinoCommandContext context)
        {
            SampleCsDragDropForm form = new SampleCsDragDropForm();

            form.Show(RhUtil.RhinoApp().MainWnd());
            return(IRhinoCommand.result.success);
        }
 ///<summary> This gets called when when the user runs this command.</summary>
 public override IRhinoCommand.result RunCommand(IRhinoCommandContext context)
 {
     SampleCsDragDropForm form = new SampleCsDragDropForm();
       form.Show(RhUtil.RhinoApp().MainWnd());
       return IRhinoCommand.result.success;
 }