The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
21 views

Clear the ComboBox Item Source Property

In my WPF Application I have one "Combobox1" while loading the page, I designed it to load the items from dataset. When I click a button, the combobox items has to be removed. But it is not removed ...
0
votes
2answers
60 views

Can't change gridview itemssource

I'm trying to change a box's color in a gridview(that has ItemTemplates which has 100 green boxes). First, I created a list(which typed as my class) and I added all items to list and I added list to ...
1
vote
2answers
39 views

How to add templates for datagrid columns?

I'm adding dynamically an itemsource to the datagrid: datagrid.ItemsSource = _table.DefaultView; foreach (DataColumn column in _table.Columns) { if ...
0
votes
0answers
38 views

WPF ListBox - Any Event Generated after the ItemSource for List Box assigned

I have created a Data Template with Buttons as shown in the below code for my ListBox . In my control I Keeping performing the addition and deletion of these buttons . I have a ObservableCollection ...
0
votes
0answers
67 views

SilverLight 4.0: PagedCollectionView Filter & Datagrid.ItemSource: Code & UI work on dev computer; Code works on IIS server but doesn't update UI

SilverLight 4.0: PagedCollectionView Filter & Datagrid.ItemSource: Code & UI work on dev computer; Code works on IIS server but doesn't update UI BackGround: DataGrid is bound using Entity ...
0
votes
0answers
74 views

Differents ItemsControl with the same ItemSource

I got an ObservableCollection which is the ItemSource of 3 differents ItemsControl : LeftItemControl,CenterItemControl and RightItemControl, I can't get why the only ItemsControl who works is the last ...
0
votes
0answers
119 views

How can I binding objects from (ItemsControl => DataTemplate), where ItemsSource is ObservableCollection<Some_Class>

Short description of my problem... Can not check all checkboxes programmatically using button. I hope that some of you have mercy on me and help me :) I have a few checkboxes hooked together by ...
0
votes
0answers
40 views

how to add itemsource to popupmenu menu items?

I would like to add a reference to some app data to each item in a PopupMenu. It appears that something called ItemSource exists for ContextMenus. Can I do the same for PopupMenu? My situation is: ...
0
votes
2answers
92 views

Bind a class collection property via xaml

This is my Globals class public class Globals { private static Globals instance = new Globals(); protected Globals() { } public static Globals Instance { ...
0
votes
2answers
99 views

Is Binding ListBox to Collection<State> possible in Silverlight?

In silverlight is databinding to collection<*> allowed ? Because i did the below and nothing happens <SilverlightToolkit:Accordion Name="ToolboxCategories" SelectionMode="ZeroOrMore"> ...
0
votes
0answers
294 views

WPF Datagrid Source Changed issue

I have datagrid and on it's load event I assign event handler for each cell, each column header and each row headers. and those are working fine. but when DataTable of datagrid (itemSource = ...
0
votes
2answers
262 views

DatatGrid Itemsource using Linq i cant select any record except first

Hey im currently having problems with WPF Datagrid using linq, currently im displaying a group of records from three tables into a datagrid, this works fine and i retrieve all the relevant information ...
0
votes
1answer
223 views

GeneratorPosition Error on Bound Observable Collection

I am using a Transitionals Slideshow control which has an observable collection of strings bound to the itemsource. These strings are the file paths to each picture in the slidehow. When I first load ...
0
votes
1answer
2k views

Fire event when ItemsSource of ListView changes

I can't find an event that can be called after a window was loaded, and where i can get access to the ItemsSource of a ListView. The only thing i can think is the Loaded event in the ListView but when ...
2
votes
1answer
468 views

How to dynamically add elements in listbox.itemsource in wp7?

I have a listbox with datatemplate, with 2 textblocks which binding some properties of some class,i have a list with elements of type of that class,i want to dynamically show this elements i.e at ...
2
votes
1answer
377 views

ItemsControl ItemsSource lazy loading

Image you are creating a custom control behaving like ComboBox in WPF. As a source of items you provide IQueryable<T> (or any kind of IEnumerable collection), but you don't want to allow the ...
0
votes
2answers
80 views

Issue when dynamically binding to a datagrid

OK I have a weird little issue I hope someone can help me with. To set the scene, I first of all have an object: public class Date { public DateTime _WeekDate; public ICollectionView ...
1
vote
2answers
5k views

Why does the DataGrid not update when the ItemsSource is changed?

I have a datagrid in my wpf application and I have a simple problem. I have a generic list and I want to bind this collection to my datagrid data source every time an object is being added to the ...
0
votes
1answer
533 views

WPF ItemSource returns null

I have a named class public class testClass { public testClass(string showCode, string urn) { ShowCode = showCode; URN = urn; } public string ShowCode { get; set; } ...
1
vote
1answer
1k views

Wp7 ListBox ItemSource ObservableCollection IndexOUtofRange and Items are not updated

I have the following issue: I am creating a Windows Phone 7 application and I am using a ListBox which is bound to an ObservableCollection people. The implementation of this you see below: public ...
0
votes
1answer
175 views

View order of derived class variables in Silverlight DataGrid

I have the following situation in a Visual Studio 2010 (C#) Silverlight 4 project using the DataGrid (this is pseudocode for brevity sake): public class BaseClass { public string str1; ...
2
votes
2answers
340 views

ItemsControl-wrapping the contents inside the window

I am using an ItemsControl inside a window in WPF. The itemscontrol is bound with a collection and the collection is a group of view models(user controls). My problem - the view is going beyond the ...
0
votes
1answer
3k views

Setting up a TreeView in Silverlight with a HierarchicalDataTemplate and Binding with ItemSource

I am trying to build a TreeView and have it set up like this link: Silverlight vs WPF - Treeview with HierarchialDataTemplate As a comment to the first actual answer provided the poster says how ...
0
votes
1answer
273 views

Silverlight, getting ItemSource data from data template programaticlly

i've got an ItemsControl with an ItemsSource of Hours. I represent each item by a border (in the data template). Now, each of those border has an hour data, and i want to retrieve that in code ...
1
vote
1answer
384 views

How to bind the ItemSource inside the DataGrid to an element outside the DataContext, eg. ViewModel in Silverlight 4

I have a DataGrid with some text columns and a button. I want to bind button to a command on the ViewModel. Since, Columns are inside the context of the ItemSource, i want to change the DataContext ...
0
votes
2answers
915 views

How to update source of WPF ListView?

I have a WPF ListView to wich I bind my collection. Properties of the objects in this collection are changed in a background thread. I need to update ListView when properties are changed. ...
0
votes
2answers
66 views

Why DisplayMemeberPath doesn't accept a standard property?

I am binding a List of object to a ComboBox. <ComboBox Name="comboPerson" DisplayMemberPath="Name"/> Where code behind looks like this: List<Person> myFriends = new ...
0
votes
1answer
851 views

binding combox in wpf datagrid

I have a list that I populate in the init of my viewmodel: ListOfEmployees = new List<EmployeeBO>(employeeRepository.GetEmployees(true, true)); I am trying to get a combobox in a datagrid to ...
0
votes
1answer
2k views

WPF Data-Bound Datagrid Filtering / Searching

I have a WPF application which uses a (currently) local database to act as a binding source. Using the Visual Studio 2010 tools I have a LINQ-SQL model which acts as the Datacontext for most forms. ...
3
votes
2answers
2k views

Combo box Item source = ObservableCollection & I need a '-None-' dummy entry at the top

I have a combo box using an observable collection as a datasource and I want a "dummy" value of "None" as the first item in the box as it controls filters against other data sources. Other databound ...
0
votes
2answers
792 views

How do I insert ToolBar separators when binding ItemSource

I am binding a ToolBar to a collection of command view model objects. The objects in the collection have a property IsSeparator that when true I would like represented with a <Separator/> in ...
10
votes
1answer
8k views

ItemSource vs Datacontext in wpf

Can any one give me the difference between Itemsource and DataContext of Listview in WPF? With example