Exemplo n.º 1
0
 protected void OnStarted(StartAnimationEventArgs e)
 {
     if (this.Started != null)
     {
         this.Started(this, e);
     }
 }
Exemplo n.º 2
0
        protected virtual void Animation_Started(object sender, StartAnimationEventArgs e)
        {
            this.SetAnimationBounds();

            this.Control.Paint    += new PaintEventHandler(Control_Paint);
            this.Control.Disposed += new EventHandler(Control_Disposed);
        }
 protected virtual void Animation_Started(object sender, StartAnimationEventArgs e) {
     this.Animation.Bounds = this.ListView.ContentRectangle;
     this.ListView.AddDecoration(this);
 }
Exemplo n.º 4
0
 protected virtual void Animation_Started(object sender, StartAnimationEventArgs e)
 {
     this.Animation.Bounds = this.ListView.ContentRectangle;
     this.ListView.AddDecoration(this);
 }
Exemplo n.º 5
0
 protected void OnStarted(StartAnimationEventArgs e) {
     if (this.Started != null)
         this.Started(this, e);
 }
        protected virtual void Animation_Started(object sender, StartAnimationEventArgs e) {
            this.SetAnimationBounds();

            this.Control.Paint += new PaintEventHandler(Control_Paint);
            this.Control.Disposed += new EventHandler(Control_Disposed);
        }