0
votes
0answers
35 views

How to animate listbox items that are databound

How can I control the Storyboard on the following ListBox DataTemplate so that after the data is bound each item appears one after the other, starting top to bottom: <ListBox x:Name="matches" ...
0
votes
1answer
42 views

how to access elements in a StackPanel in listbox

I have a ListBox that contains a StackPanel which contains an Image and a TextBlock. I want to access the TextBlock via c# (code-behind) to change it's font manually. Relevent XAML: <ListBox ...
-1
votes
0answers
44 views

Convert C# To XAML, Bind, ScrollBar, ListBox & WPF

How do I convert this C# code to XAML || bind "ScrollBarTimeLine" to "s"? ScrollBar s = (ScrollBar) ...
0
votes
0answers
107 views

ListBox - Windows Store Application

I am not able to get a listbox to display the result, I could only using "nameInput.Text," I have no idea how to work within a foreach, can anyone help? C# Code: XDocument xdoc = ...
0
votes
1answer
40 views

Get SelectedItem from ListBox

I want to get the SelectedItem from a ListBox which looks like this inside my Windows 8 Store App: <ListBox x:Name="listBox" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" Foreground="Black" ...
3
votes
2answers
52 views

Reverse stack items in the listbox WP7

im currently working on a listbox which displays the recent sites that the user has navigated to. It is working fine, but i need the lists to be displayed stack reversed, like the newest list added ...
0
votes
1answer
153 views

Windows Phone 8 - I have to double tap to load ListBox item to detect tap.

Hey guys so I have a page in my Windows phone 8 app and whenever i get to that page, if I click too quickly on any of the ListBox items, it doesn't detect the tap, so I have to re-tap it once or twice ...
1
vote
1answer
21 views

style of selected item in lisbox

I have a list box which is bound to a list of strings. <ListBox Grid.Row="1" Height="130" Background="Black" BorderThickness="0" ...
2
votes
1answer
79 views

Commanding with Static Items of Listbox using MVVM

I have a list box in my view with three static items(Name,Age,Gender), and I want my ViewModel to do something when an item in the ListBox is selected. I want to do this without any code-behind, using ...
0
votes
1answer
34 views

How do I set the Selector.IsSelected attached property to ListBox items in code?

Reference to WPF 4 Unleashed page 281: "Selector also supports two attached properties that can be applied to individual items". <ListBox Name="listBox1"> ...
0
votes
2answers
464 views

Change style for all ListBoxItem in a ListBox (Windows phone 8)

I have a Listbox with some Listboxitem and I would like to change the style of all items. I know, it's possible to create a style in resources and bind this style to each item but maybe is there a ...
0
votes
1answer
27 views

Specific control for a specific DataType

I have a List which contains different types of objects: List<object> myList = new List<object>(); DateTime date = DateTime.Now; myList.Add(date); int digit = 50; ...
0
votes
1answer
44 views

Cannot bind objects to ListBox

Cannot bind objects to ListBox. Data are there I guess it is something about Binding. Any clue? C# public sealed class Package { public Guid ID { get; set; } public string ...
0
votes
0answers
118 views

Windows phone custom message box content events not firing

I have created a CustomMessageBox which contains a ListBox. For some reason my SelectionChanged event on the listbox (which is in the CustomMessageBox) is not firing. Any Suggestions? private void ...
1
vote
2answers
87 views

Unable to cast object of type 'RuntimePropertyInfo' to type 'ListBoxItem'

I have this strange problem where I am unable to get an item from a ListBox. I have even tried to use the code from this site but it fails in my situation with a message: Unable to cast object of type ...
1
vote
2answers
388 views

Getting index of listboxitem in WPF listbox ( system.windows.control.listbox ) using mouse pointer position

I am a newbie to WPF. I have developed an WPF UserControl application in which I have a listbox. Height of the listbox is restricted to 400 just to get vertical scroll-bar. In this listbox I have more ...
0
votes
1answer
94 views

How to change the background colour of a one particular listboxitem in a listbox in metro app?

i am developing an c#/xaml metro application . I am having a listbox , in which depending upon on one particular condition i want to change only one listboxitem background colour . This is how i ...
0
votes
1answer
83 views

How to make Windows Phone Listbox unscrollable?

I have a Listbox in my Windows Phone application. Now, the listbox is scrollable (by default), so if I touch the listbox with my finger, it scrolls. I want to make it unscrollable (i.e. when I touch ...
1
vote
1answer
181 views

WPF: Setting IsSelected for ListBox when TextBox has focus, without losing selection on LostFocus

I've a ListBox with ListBoxItems with a template so they contain TextBoxes When the TextBox gets focused I want the ListBoxItem to be selected. One solution I've found looks like this: <Style ...
2
votes
2answers
151 views

WPF Filter a ListBox

i load a list of strings in my ListBox, now i want do filter it when i enter text in a textbox. How can i do it? public void ListLoad() { ElementList = new List<string>(); ...
0
votes
1answer
239 views

Windows 8 C# - how to keep ListBox items?

let's say I have a ListBox written in XAML: <ListBox x:Name="myListBox" /> and add items in C#: myListBox.Items.Add("a"); myListBox.Items.Add("b"); myListBox.Items.Add("c"); When I close ...
3
votes
1answer
223 views

json to new listbox item in windows store app C#

I have an app for windows 8 that needs to take a Json string and deseriaizes it into DATACONTRACTS and it will display the information I wish in a Listbox that will have a max height and will scroll ...
0
votes
1answer
55 views

Partially vertically scroll

I have a ListBox that contains two columns - column one contains a Toggle Button, column two contains an Expander with multiple controls within it. If the expander is collapsed, the overall scrolling ...
2
votes
1answer
144 views

ListBox SelectionChanged WP7 to navigate with parameters

So, in the Windows Phone 7 app I'm making, I use a ListBox with a SelectionChanged event handler to navigate a user to a new webpage, showing additional information. The MainPage.xaml shows a ListBox ...
0
votes
1answer
136 views

Vertical scrollbar is not coming up in listbox

I am designing a visual studio extension in which I need a dock panel window. I am able to get this window using WPF. In this particular window I am displaying dynamic list of some strings which ...
2
votes
1answer
210 views

WPF: Get a ListBoxItem as CheckBox with a Template Style to syncronize with IsSelected

I'm making a MVVM WPF application, in this application I have a ListBox with my own Privilege Items. After ages I finally found a solution how to get selection synchronized with my ViewModel. (You ...
0
votes
0answers
91 views

wpf: why usercontrol can't allow to edit some controls that hosts?

(using blend) Inside a UserControl I putted controls like textbox and listbox. When I go to use this UserControl, hosted on window or another usercontrol, it's impossible to edit the content, for ...
1
vote
1answer
109 views

Metro App Access DataTemplate Control

I have a ListBox control with the following layout, that has a custom control in it: <ListBox x:Name="testList" ItemsSource="{Binding}" BorderBrush="{x:Null}" BorderThickness="0" Margin="0" ...
0
votes
0answers
129 views

Why is this ListBox XAML invalid?

Why is the XAML marked invalid between the <DataTemplate>... </DataTemplate> only? The project compiled properly though. I used this code before in another project that use Windows Phone ...
0
votes
1answer
198 views

WPF Surface listbox data binding - listbox content not being populated with content

I was using XmlDataProvider to get pictures from a folder, then display them in a list box, but something is wrong that list box appears but without those pictures. Pictures are in a folder called ...
0
votes
1answer
66 views

ListBox in WPF page looks fine on my PC, but the data shrinks on smaller resolutions

I've tried almost every combination of alignments and margins, to no success. The ListBox is on a WPF page, which is bound to a frame on the main window. The ListBox itself is fine. It aligns just as ...
1
vote
0answers
94 views

windows phone 7 listbox corrupted data

I'm trying to display information through a webservice in a ListBox which has TextBlock bindings. I've been researching this issue online and can't seem to resolve this problem. My database tables do ...
0
votes
1answer
393 views

Change DataTemplate style in ListBoxItem if the item is selected

I have a listbox with an expander inside the ItemTemplate. I managed to bind the expander's IsExpanded property to the ListBoxItem's IsSelected property ok. Now I want to apply a style to the ...
1
vote
0answers
65 views

Populate a ListBox with remote image

I am using VS Studio Express 2012 on my Windows 8 machine and developing Win8 Store App, using a trial and free account. I am using a ListBox in my app and try to populate an image with some other ...
0
votes
1answer
130 views

How to freeze first item of listbox in wpf?

I have a listbox with radio button as its items. The listbox is scrollable and can add as many items as possible. But, I have to keep the first item freezed as it should be visible all the time. Any ...
0
votes
1answer
135 views

how to avoid first item selection by default in wpf Listbox?

I want to avoid first item selection that happens by default in Listbox when application loads. I tried with SelectedIndex= -1 but it did not work. I do not want any item to be selected when ...
1
vote
1answer
622 views

Change listbox selected item foreground in windows phone 7

I have the following listbox: <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" Margin="0,10,0,10"> ...
0
votes
1answer
97 views

ListBox doesn't show complete items

I have Expanders in a ListBox. If I now put a ListView into the last Expander, the ListView has exactly the size to show all of the items. This is so far what I want. But now its not possible to ...
1
vote
0answers
163 views

multi-column listbox xaml windows app project

I want an listbox with multiple columns and rows. Exactly what's described here. The problem with this solution is that the 'UniformGrid' isn't supported in an windows 8 app project. So, how can I ...
0
votes
2answers
436 views

Custom tooltip for listbox item in WPF

I've got a ListBox that displays an ObservableCollection of Talent objects. When the user hovers over each item in the ListBox, I'd like to display in the ToolTip several pieces of information about ...
1
vote
2answers
420 views

Binding a ListBox to an ObservableCollection of ViewModels

Is there a convention when using MVVM to bind the items of a ListBox to a ViewModel? In the below XAML, I'm creating a ListBox of buttons. The ListBox is bound to an observable collection from my ...
-1
votes
1answer
125 views

PreviewMouseLeftButtonDown interferes with clic selection [closed]

I've implemented this code to perform a drag feature in a listBox. http://www.c-sharpcorner.com/uploadfile/dpatra/drag-and-drop-item-in-listbox-in-wpf/ But realized that the event ...
3
votes
2answers
525 views

WPF TwoWay Binding of ListBox using DataTemplate [duplicate]

Possible Duplicate: How to make ListBox editable when bound to a List<string>? I'm trying to set a two-binding between a List named "ListStr" object and a ListBox WPF control. Besides ...
0
votes
3answers
72 views

How to centre an item over a point in a Canvas?

I'm using a ListBox with its DataTemplate containing a Canvas. I then bind the Left/Top of the Grid containing that Canvas to move it to a certain point. I want to then have the child Grid centred at ...
1
vote
2answers
97 views

List item unresponsive on second click event

In my Windows Phone 7 application I have a number of list views. Each listViewItem has a click event (By setting 'selectionChanged' attribute to the listBox in my xaml). Now a very peculiar thing ...
1
vote
0answers
80 views

Silverlight ListBox not updating when not in XAML tree

Simplified version of the problem. So concentrate on the technical issue not user friendliness. ;) I have a listbox filled with items from an ObservableCollection. It is showed in my first view. By ...
0
votes
1answer
180 views

How to bind a command in XAML/WPF ListBox Drop event

I want to do something like this: <ListView PreviewDrop="{Binding TestCommand}"> ( of course I know its wrong but it shows the idea)
0
votes
0answers
173 views

Silverlight - access ListBox item properties through XAML only

Does anyone know how to access the items stored in a ListBox, and their respective properties, for use elsewhere? This is what I have so far: First, the code to create a list of checkboxes from ...
1
vote
2answers
1k views

Can we change the selected item color of a ListBox?

So, I have this ListBox written in XAML: <ListBox Margin="0" x:Name="ListBox_Main" Grid.Row="1" VerticalAlignment="Top" FontSize="24" SelectionChanged="ListBox_Main_SelectionChanged" ...
0
votes
1answer
450 views

How to use Listbox in wp7?

I have one listbox control in my xaml par.My code for listbox is <ScrollViewer Grid.Row="2" Name="ScrollGrid" VerticalScrollBarVisibility="Auto" VerticalAlignment="Top" Height="Auto" Width="450" ...

1 2 3 4 5 7