No announcements
Found 1018490 threads
-
0 Votes
Listview with different bindings
A ListView can only have one DataContext.Answered | 1 Replies | 4267 Views | Created by Marco Rosas - Monday, January 26, 2009 4:08 PM | Last reply by Tao Liang - Thursday, January 29, 2009 7:27 AM -
0 Votes
Binding a listview
If you are talking about Windows Forms ListView (as opposed to WPF), AFAIK you can't use binding (to bind items) ...Answered | 2 Replies | 3106 Views | Created by MyKuLLSKI - Wednesday, September 15, 2010 7:38 PM | Last reply by MyKuLLSKI - Wednesday, September 15, 2010 10:57 PM -
3 Votes
Data binding using different templates on the same ListView with groups.
I follow the ListView-item-templates sample.Answered | 11 Replies | 7776 Views | Created by babs9999 - Wednesday, September 28, 2011 8:18 AM | Last reply by Jeff Sanders - Monday, July 15, 2013 3:01 PM -
1 Votes
ListView Data-Binding problem
Your window DataContext is set to Messages, then in your LIstView your binding the ItemsSource to the Path Messages.Answered | 2 Replies | 2869 Views | Created by arcadiaq - Friday, June 8, 2012 1:46 PM | Last reply by arcadiaq - Friday, June 8, 2012 1:55 PM -
1 Votes
ListView Item without Bindings
Last, i make tha dataView as the ItemSource of the ListView.Answered | 6 Replies | 4158 Views | Created by Angelica_gr - Tuesday, December 8, 2009 2:48 PM | Last reply by DaveyBoy1138 - Thursday, December 10, 2009 3:04 PM -
0 Votes
[XAML] Binding Nested ListView
If you want to display the addresses of each EventsEventPlayer, you could bind to the property that returns the addresses directly since the DataContext of an item in the ListView ...Answered | 7 Replies | 1640 Views | Created by Vagelis Dermos - Sunday, July 3, 2016 3:14 PM | Last reply by Thanik - Sunday, July 31, 2016 4:34 PM -
0 Votes
ListView Binding Memory Issue
I filled the list without any listview binding to it, then clearing the list and the memory still won't be freed.Answered | 3 Replies | 3443 Views | Created by salat88 - Sunday, July 26, 2009 8:29 PM | Last reply by salat88 - Monday, July 27, 2009 3:26 PM -
0 Votes
ListView Binding Question?
but ListView's event not use...why?Answered | 6 Replies | 3670 Views | Created by xsi640 - Thursday, March 18, 2010 5:55 AM | Last reply by Linda Liu - Wednesday, March 24, 2010 3:15 AM -
0 Votes
Listview data binding question
Also, your binding can be somewhat simpler: Code-behind: ObservableCollection<UserInfo> userCollection = new ...Answered | 5 Replies | 4269 Views | Created by sesn2000 - Monday, November 23, 2009 7:52 PM | Last reply by Geert van Horrik - Monday, November 30, 2009 4:50 PM -
1 Votes
Binding the CheckBoxes in the ListView
<CheckBox HorizontalAlignment="Center" IsChecked="{Binding RelativeSource={RelativeSource AncestorType=ListViewItem}, ...Answered | 3 Replies | 831 Views | Created by wpf_xam1 - Thursday, March 17, 2016 3:04 PM | Last reply by noorbakhsh - Thursday, March 17, 2016 9:18 PM -
1 Votes
[UWP] ListView - Binding - Speed/Delay
Hello deatlidu, Did you try the ListView Virtualization?Answered | 2 Replies | 1598 Views | Created by deatlidu - Friday, February 19, 2016 12:25 PM | Last reply by deatlidu - Monday, February 22, 2016 6:20 AM -
0 Votes
Binding listview with dataview , narrator is not reading text in listview
onfocus_method(Object sender, eventargs e) { var result = e.Source/ e.OriginalSource as (item ...Answered | 2 Replies | 2547 Views | Created by Vijayanand Gavle - Friday, July 5, 2013 12:30 PM | Last reply by Priyanka Potdar - Monday, May 18, 2015 10:52 AM -
0 Votes
Binding template column in listview
I am not sure that your CreateItemsForGrid method is supposed to do but since you are binding the Content property of the RadioButton in your XAML markup to the ApptTime source property of ...Answered | 2 Replies | 567 Views | Created by Mehtout - Monday, April 25, 2016 11:40 AM | Last reply by Magnus (MM8) - Monday, April 25, 2016 8:43 PM -
1 Votes
How to enumerate a listview using binding
Replace your counter TextBlock with following: <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=ListViewItem}, ...Answered | 1 Replies | 1210 Views | Created by PsilonRus - Monday, April 1, 2013 12:29 PM | Last reply by noorbakhsh - Monday, April 1, 2013 6:24 PM -
1 Votes
[UWP]Different line in ListView Possible?
<Page.Resources> <DataTemplate x:Key="NormalDataTemplate"> <StackPanel Background="Yellow"> ...Answered | 3 Replies | 711 Views | Created by Fosjdjdjf - Sunday, September 3, 2017 11:57 AM | Last reply by Fosjdjdjf - Monday, September 4, 2017 11:28 AM -
1 Votes
ListView Binding
You can copy paste code below for the sample(Create a project names: ListViewTest): XAML: <Window ...Answered | 2 Replies | 1730 Views | Created by kiwis - Tuesday, September 4, 2012 6:39 AM | Last reply by agrawal.ashish - Tuesday, September 4, 2012 7:00 AM -
0 Votes
customizing listview, binding to method
This way you could use exactly the same binding for the TextBlock and the Image.Answered | 4 Replies | 3753 Views | Created by slip99 - Wednesday, June 3, 2009 6:49 AM | Last reply by slip99 - Wednesday, June 3, 2009 7:59 AM -
0 Votes
How to Bind DataTable to ListView
But it is also possible to use the ListView, except that it cannot create the columns automatically.Answered | 2 Replies | 43839 Views | Created by Lucky7777 - Thursday, November 13, 2008 8:15 AM | Last reply by nruessmann - Thursday, November 13, 2008 10:28 AM -
2 Votes
bind a observablecollection to a listview without a gridview
Hello, you can bind the collection to the ItemsSource property, edit the DataTemplate of the ListView and use the layout you like.Answered | 3 Replies | 6284 Views | Created by HealthyBeerDude - Tuesday, March 8, 2011 9:26 PM | Last reply by HealthyBeerDude - Thursday, March 10, 2011 5:11 PM -
0 Votes
Binding ListView to DataSet with relations
You could convert DataTable to ObservableCollection and then bind ObservableCollection to UI.Answered | 1 Replies | 4940 Views | Created by Mark PL - Tuesday, April 7, 2009 5:44 PM | Last reply by Tao Liang - Thursday, April 9, 2009 2:58 AM - Items 1 to 20 of 1018490 Next ›
No announcements