1
vote
1answer
11 views
add images to listbox (visual basic)
I have sets of web hosted images that I need my user to be able to select 1 from each. I thought a listbox would work for this, but I can't figure out add an image to one. Is this …
0
votes
1answer
98 views
Move items betweem list boxes in c#
Hi friends,
I developed a webpage in which I used the following code to move the selected items between two list boxes.
It is very slow.
Is there any optimization for this? Ple …
1
vote
1answer
29 views
Wpf ListBox Trigger not working for IsFocused Property.
I want to style my ListBox and displaying some Border around it, i want to hide this Border when ListBox gets focus,
<Trigger Property="IsFocused" Value="True">
<Setter …
0
votes
1answer
28 views
ASP.NET with VB. ListBox adding and removing items
Hiya i'm creating a web form and i want a user to be able to make certain selections and then add the selections to a text box or listbox.
Basically i want them to be able to type …
0
votes
1answer
40 views
C#: Bind TextBox to SelectedValue
I have a List<> of objects that I have bound to a ListBox. I then want to bind properties of the SelectedValue to various TextBoxes. The behavior is very screwy though.
When bi …
3
votes
1answer
13 views
ListBox Value containing links
hi I am currently working on improving the SEO on a website containing dropdown list menu. currently when you select options and then submit a javascript is redirecting you to the …
0
votes
2answers
21 views
asp.net listbox vs winforms listbox.
The following code is for winforms:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void For …
0
votes
1answer
14 views
WPF: How to limit number of rows shown by ListBox?
Is it possible to limit the number of rows a listbox show?
Eg. let´s say I have a ItemSource with 100 items, but I only want my listbox to be 10 items high.
0
votes
2answers
33 views
How to disable ScrollViewer in ListBox?
I have a ListBox. It has internal ScrollViewer, so I can scroll ListBox content with mouse wheel. It works fine until I set item template that contains another ListBox (in fact, I …
0
votes
1answer
34 views
asp.net listbox double click event + event handler.
I am trying to add a double-click event in a listbox.
But I am getting the following error.
the aspx file
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ListBox__T …
1
vote
2answers
48 views
How can I prevent duplicates in a WPF Listbox control?
I have a WPF listbox control that is declaratively bound to a textbox. The listbox's ItemsSource is an ObservableCollection that is built from an XML file. I can easily prevent dup …
0
votes
2answers
30 views
Populating a list box with variable names from LINQ generated class
I'm quite new to Visual Basic - using Visual Studio 2008 and can't seem to find a way to do the following:
I have a few tables in a SQL Server database and have used LINQ to SQL t …
0
votes
1answer
25 views
How to determine index of current ListBox item from DataTemplate?
I have a ListBox. Now I want to write a DataTemplate in such way, that the first item will have red background and white background for other items. I guess I need to write a DataT …
0
votes
3answers
57 views
How to insert ComboBox item into ListBox? [winforms]
The question is very simple,
How to insert ComboBox selected item into ListBox using c#?
I have tried with this:
listbox.Items.Add(combobox.SelectedItem);
and some other permut …
0
votes
2answers
57 views
Adding a right click / context menu to listbox items in C#
okay, so i have listBox1, and its populated with items, id like to know how to
1. when you rightclick in the listbox, that the rightclicked item will be selected,
2. a rightclic …
