示例#1
0
 public AraUpload(string vId, IAraObject ConteinerFather)
     : base(vId, ConteinerFather, "AraUpload")
 {
     Click               = new AraComponentEvent <EventHandler>(this, "Click");
     PathSaveFiles       = AraTools.GetPath() + "UploadFiles\\";
     this.EventInternal += this_EventInternal;
     this.MinWidth       = 150;
     this.MinHeight      = 50;
     this.Width          = 110;
     this.Height         = 25;
 }
示例#2
0
 public AraUpload(IAraObject ConteinerFather)
     : this(AraObjectClienteServer.Create(ConteinerFather, "div"), ConteinerFather)
 {
 }
 public AraUploadButton(IAraObject ConteinerFather) :
     base(ConteinerFather)
 {
     this.Click += this_Click;
 }