pro_imaj Posted July 21, 2015 Share Posted July 21, 2015 Merhaba; UniTreeView kullanmaya çalışıyorum fakat SelectedIndex le işlem yapamıyorum. Sadece aşağıdaki gibi isme göre yapıyorum buda hiç mantıklı olmuyor. Nasıl bir yol izlemem gerekiyor. if TreeView.Selected.Text = 'Frame1' then AddFrame( 'Tframe1' , 'Açıklama' ); Teşekkürler. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 21, 2015 Administrators Share Posted July 21, 2015 Merhaba Siz Tree componentini tam olarak ne şekilde kullanmak istiyorusunuz? Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted July 22, 2015 Author Share Posted July 22, 2015 Merhaba @Farshad AllFeaturesDemo Main ekranındaki gibi aslında; O örneği de inceliyorum fakat orası çok komplike. AllFeaturesDemo Main ekranındaki gibi TreeView deki bir items'e tıklandığı zaman hangi Selected index'e tıklandığını alamıyorum. Bunu almak istiyorum. Teşekkürler. İyi çalışmalar. Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted July 22, 2015 Author Share Posted July 22, 2015 Konu aktiftir. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 22, 2015 Administrators Share Posted July 22, 2015 if Unitreeview1.Selectednil then I := Unitreeview1.Selected.SelectedIndex; Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted July 22, 2015 Author Share Posted July 22, 2015 Merhaba; Sorunda tam burada başlıyor, neyi tıklarsam tıklayayım değer herzaman 0 geliyor. procedure TMainForm.TreeViewClick(Sender: TObject); var I : Integer; begin if TreeView.Selected<>nil then begin I := TreeView.Selected.SelectedIndex; ShowMessage(I.ToString); end; end; Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 23, 2015 Administrators Share Posted July 23, 2015 Eğer tasarım aşamasında veya kodda SelectIndex'e bir değer atamadıysanız default 0 olarak gelecektir. AbsoluteIndex'i de kullanabilirsiniz. Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted July 23, 2015 Author Share Posted July 23, 2015 Merhaba @Farshad SelectIndex'e tabiki değer atıyorum, buna rağmen değer 0 dönüyor. AbsoluteIndex deneyince çalıştığını gördüm teşekkürler. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 23, 2015 Administrators Share Posted July 23, 2015 Evet hata bizden kaynaklanıyormuş. Sonraki sürümde düzeltilecek. Teşekkürler Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted July 23, 2015 Author Share Posted July 23, 2015 AbsoluteIndex ile geçici olarak çözdüm, geçici süreliğine bu şekilde gideceğim. Sizin taraftaki düzeltmeyi bekliyor olacağım. İyi çalışmalar. Quote Link to comment Share on other sites More sharing options...
pro_imaj Posted August 3, 2015 Author Share Posted August 3, 2015 Merhaba; Son güncellemeyle sorun düzelmiş. Elinize sağlık. 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.