Ghaleon Posted July 6, 2012 at 03:51 AM Report Share #467600 Posted July 6, 2012 at 03:51 AM Boas galera, gostaria de saber como passao o item selecionado do listview1 para o listview2, eu vi um exemplo que tem aqui com listbox, mas não funcionou =\ Agradeço a atenção de todos =) Link to comment Share on other sites More sharing options...
Sponsor Posted July 6, 2012 at 02:17 PM Report Share #467694 Posted July 6, 2012 at 02:17 PM Boas, Crias um novo ListViewItem com os dados do item selecionado na listview1 e adicionas a listview2 esse item criado! Link to comment Share on other sites More sharing options...
sYnced Posted July 9, 2012 at 11:27 AM Report Share #468034 Posted July 9, 2012 at 11:27 AM como o clega acima disse, só que listview1.item[0].text e assim vice versa, depois é só passares para a outra, caso queiras exemplos avisa! Link to comment Share on other sites More sharing options...
Ghaleon Posted July 15, 2012 at 09:20 PM Author Report Share #468738 Posted July 15, 2012 at 09:20 PM (edited) como o clega acima disse, só que listview1.item[0].text e assim vice versa, depois é só passares para a outra, caso queiras exemplos avisa! Gostaria sim, por favor !! Pois não intendi como faze-lo =\\ já tentei isto ListViewItem[] lvi = listView1.SelectedItems.Cast().Select(i => (ListViewItem)(i.Clone())).ToArray(); listView2.Items.AddRange(lvi); Agradeço atenção ! (C#) Edited July 15, 2012 at 09:25 PM by Ghaleon Link to comment Share on other sites More sharing options...
Sponsor Posted July 16, 2012 at 08:25 PM Report Share #468947 Posted July 16, 2012 at 08:25 PM Viva, fazes listview2.Items.Add(listview1.SelectedItem[0]); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now