Tagged Questions
0
votes
1answer
37 views
C# List text files in a listbox and let user open them in a textbox
I'am pretty new to C# and I want a listbox with all text files in a folder and if the user dubbleclicks on the listed file the file will display in a textbox.
I don't want to use the openFileDialog ...
1
vote
1answer
31 views
Why ListBoxItems does not get all the available space?
Take this simple example:
<Grid>
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate >
<Grid HorizontalAlignment="Stretch">
...
-1
votes
2answers
47 views
Binding a ListBox to a List<string>
I am trying to bind a list of strings to the contents of a list box. For some reason, I get results for bluetape list, but the contents of BluetapeList does not ever make it into the listbox. Any ...
0
votes
1answer
34 views
How to get checked items from a listbox
I am new to WPF and trying to add some checkbox items to a ListBox dynamically and then on click of the button I am trying to get the checked items from the listbox. But the problem is that there is ...
0
votes
1answer
71 views
Load More Data When Scroll to Bottom ListBox Silverlight NOT WP7
I would like to have a listBox that I will fill with items. When the user scrolls to the bottom of the listBox, the listBox should be loaded with more items.
There are tons of tutorials for doing ...
0
votes
0answers
38 views
ListBox in c# doesnt update display, even though items have been updated
private System.Windows.Forms.ListBox listboxKeyWords;
this.listboxKeyWords.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | ...
0
votes
2answers
81 views
WPF ListBox sometimes ignoring SelectedItem change
I have list box with next properties:
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
x:Name="listBox"
ItemsSource="{Binding Items}"
In code i have one static model and it can be used in few ...
0
votes
2answers
83 views
Cannot show quickly list of images in WPF ItemsControl
I have ItemsControl (listbox) with some custom complex data templates. And its take few seconds to show window with this listbox!
My listbox datatemplate contains image:
<Image Stretch="Uniform"
...
0
votes
0answers
24 views
Modify ListBoxItem Background based on a Reuxable Theme?
I'm trying to overwrite the background of a ListBoxItem on MouseOver/IsSelected. I'm using a free Reuxable theme, but I don't have the code, only the dll.
For some reasons, the background doesn't ...
0
votes
1answer
87 views
Parsing SelectedValue of a ListBox to int using C#.NET
I've a listbox that uses a dictionary as a datasource.
When I want to parse the listbox's selectedvalue to a int variable, it gives me a cast exception.
The dictionary~
Dictionary<int, ...
0
votes
1answer
35 views
wpf itemlist not updating values
So I have three things:
A ListBox in a Window
A DataBase class granting me access to an ObservableList
Contact implements INotifyChanged
In my main Window, I have three Buttons (One for new List ...
3
votes
2answers
422 views
Complex UI inside ListBoxItem
In WPF, I can add whatever UI into ListBoxItems by providing the ListBox with an ItemTemplate:
<ListBox ItemsSource="{Binding}">
<ListBox.ItemTemplate>
...
1
vote
1answer
75 views
Update or refresh using datasource
I load my data from ms-access database to listbox.. all I want to do is update or refresh my listbox datasource when I click on my update button. then this is the code i use for method then call the ...
3
votes
2answers
77 views
how to use wait or thread to wait till the event occurs
Say in winforms I have a listbox.
and I also have a thread which waits till there is some item in listbox.
Say currently the list box is empty, so the thread have to wait.
Say now there is some ...
0
votes
1answer
66 views
bug in displaying data selected in listbox in text box
I am using the following code:
private void listBox1_MouseClick(object sender, MouseEventArgs e)
{
txtFrom.Clear();
txtSubject.Clear();
txtBody.Clear();
something = ...
0
votes
1answer
153 views
Binding a ListBox's SelectedItem property to two separate TextBoxs
So I have a list box that will contain a list of uninspected die prints. The list box contains a list of strings; a die print has the naming convention of "'row'x'col'".
Example: 02x09, 05x06 etc. ...
1
vote
2answers
84 views
Chart corrupt when load listboxes
I've weird problem , I'm a beginner making small program Solves some statistics using listboxes and displaying 2 charts
the problem is that when I try to save the first 3 main listboxes to a txt file ...
0
votes
2answers
165 views
Search an item in the listbox where the item to be searched is in textbox and no button click C#
say ive a listbox with items already present, say the items are
Ant
Adam
Ball
Cat
Dog
Ear
Frog
above the listbox there is a textbox prompting the user to search
say if i enter in textbox ad ...
1
vote
5answers
308 views
Displaying data entered in one form to another form
I want another form to display the selected items from the listbox of one form to rich text box of another form that opens up on button click. I used the following snippet in form 1 to display the ...
0
votes
1answer
93 views
Implement a second column of checkboxes alongside a checked listbox
I am creating some UI for a graphing tool at the moment, and I was wondering if anyone has come across/ knows how to implement a checked list box with 2 check boxes. I have had a look on both google ...
0
votes
3answers
320 views
Displaying selected items of listbox into a message box
I am able to display multiple selected items from a listbox into a text box on a button click but how can I display the same on a message box? I mean displaying first item on a messagebox is not an ...
1
vote
2answers
110 views
Listbox Click and Drag
I have a Listbox a MainControl and 4 PreviewControls. I would like when i click an item from the listbox that the mainControl changes (This happens). But i would like to add a dragg behavior to the ...
0
votes
1answer
98 views
ListBox with html element
Can anyone offer me some advice? I currently have a listbox I am using, in the listbox there is a list of images from any website. they are grabbed from the website via this method
Private Sub ...
1
vote
1answer
102 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" ...
8
votes
3answers
172 views
ListBox margin is not the same in Windows 7 and Windows 8
I have styled an WPF ListBox. I'm developing under Windows 8. After setup the style to be as follows (see image), when I test the application in Windows 7, the margin is not the same. As you can see ...
1
vote
0answers
122 views
LongListSelector focus on item
I have this LongListSelector in my app page:
<Controls:LongListSelector x:Name="searchList" Margin="0,0,0,0" Background="White" SelectionChanged="DidPressSelectSearchList" ...
0
votes
1answer
38 views
Flashing when clearing and repopulating a ListBox
I am using a timer to update values in a ListBox. Every tick I do the following:
listBox1.Items.Clear();
foreach (string thing in thingys)
{
...
3
votes
2answers
114 views
ListBox Not Selecting the Selected Item
See code below
Visual Studio 2010
Above the ListBox have a TextBox.
Via binding the TextBox can get bigger or smaller when an item is selected.
That causes the ListBox to move.
When the ListBox moves ...
0
votes
2answers
259 views
Adding ListBox's items to a DataTable
I've seen many questions here about filling a listBox using a DataTable, but is it possible to do the opposite?
0
votes
0answers
279 views
Drag drop items from one listbox to another listbox and saving its state
I am using MVC4 with Razor view. I've created a view with two ListBoxes. I am displaying data in first ListBox. I am able to drag & drop items between both ListBoxes but i want to save its state ...
0
votes
1answer
118 views
Embedding a WPF Listbox to my WinForms application
How would I embed a WPF list box to my Windows Form application?
The WPF list box will ideally be able to add list box item objects, render the color (by setting the background property to some ...
0
votes
1answer
237 views
Drag and Drop Multiple Items from ListBox
I have a ListBox and I want to be able to click on multiple items and then drag the string from each of the selecteded items. I can get it working fine for a single object. I just can't get it working ...
0
votes
1answer
152 views
Multiple Item Drag 'n' Drop from ListBox
I have a ListBox and I want to be able to click on multiple items and then drag into another program. I can get it working fine for a single object. I just can't get it working for more than 1.
I had ...
0
votes
2answers
121 views
Cross Thread Exception while adding Items in ListBox VS 2012 C++
I have written a little algorithm for Scanning Bluetooth-Devices and add it in my listbox. But I get an Error: Cross Thread Exception.
What I want is to update my listbox continously without any ...
1
vote
1answer
126 views
Silverlight 5 Listbox sizing
I have a Silverlight 5 Listbox inside a Star sized grid column and within the Listbox DataTemplate another Grid.
What I want to do is to fill the available space in the DataTemplate grid for the ...
0
votes
4answers
214 views
Dictionary, array or list for quick searching of indexes and values
I have 100,000 strings each with a fixed ordered index value like this:
Index String Value
0 XXXXXXXXXXXXXXXXXXXXX
1 XXXXXXXXXX
2 (empty string)
3 ...
1
vote
3answers
156 views
Speed and functionality of dictionary vs list vs array
I'm writing an application in C# using .NET 4.5. My application reads from and writes to a binary file which is consumed by a hardware device. The file is exactly 5,000,000 bytes and consists of ...
0
votes
1answer
250 views
Highlight multiple items/rows in listBox
I have a list box that show some positions of (X,Y) in each row.
Somehow the user could enter a few (X,Y) pairs in a text box, and press the button.
Now What I want to do is: every time the user ...
1
vote
0answers
53 views
ListBox Dividing Line .NET Windows Forms
In .NET Windows forms, is there an easy way to add a horizontal dividing line? It should be non-selectable.
This question, I believe, talks about the same thing in ASP.NET.
0
votes
4answers
578 views
getting selected index of listbox(c#)
I have a ListBox with SelectionMode set to multiple. When I check the selected index using ListBox1.SelectedIndex I always get -1 even if I click on a item?? I would like to be able to get index of ...
0
votes
2answers
117 views
An impossible WPF DataBinding scenario?
The main reason I started with WPF in the first place was the promise of all the awesome possibilities of databinding. After days of headaches I'm beginning to think that one of the most common ...
1
vote
2answers
121 views
Detecting which control is active
I have a setup with a textbox and a listbox in which I want the listbox to be visible only when either the textbox or the listbox is focused. To begin with the listbox will be invisible. Then as the ...
0
votes
2answers
302 views
Remove left padding for a WPF ListBoxItem with GroupStyle defined for its ListBox
I have a WPF ListBox with several headings. I acheived this by having a GroupStyle in which I define how each header will look:
<ListBox DataContext="{StaticResource MyGroups}" ...
0
votes
2answers
243 views
selecting an item from listview in C#
I am trying to show the selected item in listview in a message box, so using the following code
private void lstMovie_SelectedIndexChanged(object sender, EventArgs e)
{ ...
1
vote
3answers
501 views
Adding ListBoxItems in Code-behind
How do we add new items to a ListBox control in a Windows Metro style application at run-time?
I come from WinForms, so as you could imagine, I'm pretty confused right now.
I have the following:
...
0
votes
1answer
292 views
how to get number of items in listbox
In my program i took a listbox, in this listbox I added number of items.
Now I want to know how to get number of listbox items & show number of items in a textbox. when number of items is not ...
1
vote
1answer
2k views
Multi-column data in ListBox
I want to have multi-column in my ListBox. Below is the example of picture I got in my application.
I actually have about 7 columns, but printed out only two columns to make it easier to ...
0
votes
0answers
157 views
Weird behaviour of list box. Silverlight bug?
First my sample code, which reproduces the issue.
XAML
<UserControl x:Class="ListBoxWeird.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
2answers
128 views
updating ListBox colors in C#
for my purposes I am writing a GUI in 4.0 that displays my custom Instance objects in a ListBox with custom colors. I've been able to draw them in their respective colors, but am wondering if there is ...
1
vote
1answer
387 views
Bad auto height in ListBox
I have this code in XAML
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition ...





