2012-05-16 18 views
6

Me gustaría saber cómo hacer mi segundo espejo trackbar.position en la dirección opuesta a trackbar1.position. por ej. rango de 1 a 100.Espejo Two TrackBar

Así TrackBar1.Position := 2 Cuando, a continuación, trackbar2.Position := 99 Independientemente de la forma en que las barras de seguimiento va, me gustaría reflejar en la dirección opuesta.

Heres mi código hasta ahora: (no estoy interesado en usar las teclas para hacer esto), solo la interacción del mouse.

Direction : string; 
Skip : boolean; 

procedure TForm1.TrackBar1Change(Sender: TObject); 
begin 
if TrackBar1.Position = TrackBar2.Position then 
begin 
if Direction = 'up' then TrackBar2.Position := TrackBar2.Position + 1; 
if Direction = 'down' then TrackBar2.Position := TrackBar2.Position - 1; 
skip := true; 
end; 


if TrackBar1.Position < TrackBar2.Position then 
begin 
if skip = false then 
begin 
TrackBar2.Position := TrackBar2.Position - 1; 
Direction := 'down'; 
end; 
end 
else 
begin 
if skip = false then 
begin 
TrackBar2.Position := TrackBar2.Position + 1; 
Direction := 'up'; 
end; 
end; 
end; 

Probablemente estoy exagerando esto. Tal vez hay una manera más simple. Prefiero la manera más simple. Gracias,

Ben

Respuesta

5

Las 2 barras de seguimiento OnChange eventos están vinculados a este código:

procedure TForm1.TrackBarChange(Sender: TObject); 
var 
    tbSource, tbTarget: TTrackBar; 
begin 
    if Sender = TrackBar1 then // Check the Trackbar which triggers the event 
    begin 
    tbSource := TrackBar1; 
    tbTarget := TrackBar2; 
    end 
    else 
    begin 
    tbSource := TrackBar2; 
    tbTarget := TrackBar1; 
    end; 
    tbTarget.OnChange := nil;       // disable the event on the other trackbar 
    tbTarget.Position := tbSource.Max + tbSource.Min - tbSource.Position; // set the position on the other trackbar 
    tbTarget.OnChange := TrackBarChange;    // define the event back to the other trackbar 

    // Call a function or whatever after this line if you need to do something when it changes 
// lbl1.Caption := IntToStr(TrackBar1.Position); 
// lbl2.Caption := IntToStr(TrackBar2.Position); 
end; 

inicio Alternativa (sugerido por Ken White y comentarios de mí; o)):

procedure TForm1.TrackBarChange(Sender: TObject); 
var 
    tbSource, tbTarget: TTrackBar; 
begin 
// if Sender is TTrackBar then  // is it called 'from' a trackbar? 
// begin 
    tbSource := TTrackBar(Sender); // Set the source 

    if tbSource = TrackBar1 then // Check the Trackbar which triggers the event 
     tbTarget := TrackBar2 
    else 
     tbTarget := TrackBar1; 

    tbTarget.OnChange := nil;            // disable the event on the other trackbar 
    tbTarget.Position := tbSource.Max + tbSource.Min - tbSource.Position; // set the position on the other trackbar 
    tbTarget.OnChange := TrackBarChange;         // define the event back to the other trackbar 

    // Call a function or whatever after this line if you need to do something when it changes 
// lbl1.Caption := IntToStr(TrackBar1.Position); 
// lbl2.Caption := IntToStr(TrackBar2.Position); 
// end; 
end; 
+1

'tbTo.Position: = 100 - tbFrom.Position + 1;' (1-100,2-99) – teran

+0

Gracias montones chicos – Ben

+0

@teran: He utilizado 'min: = 0' y' max: = 100'. .. esto es por qué; o) pero actualizo para responder la pregunta ** exacta **; o) – Whiler