Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
9k views

WPF: ItemsControl with scrollbar (ScrollViewer)

I followed this small "tutorial" on how to add a scrollbar to an ItemsControl, and it works in Designer view, but not when I compile and execute the program (only the first few items show up, and no ...
17
votes
1answer
3k views

Setting Canvas properties in an ItemsControl DataTemplate

I'm trying to databind to this ItemsControl: <ItemsControl ItemsSource="{Binding Path=Nodes, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"> <ItemsControl.ItemsPanel> ...
13
votes
5answers
6k views

How to draw line of ten thousands of points with WPF within 0.5 second?

I am writing WPF code to show a real-time plot which is a connected line containing about 10,000 points. It takes about 5 seconds to show a picture in my computer. Does anyone have an idea to make it ...
12
votes
2answers
3k views

WPF - Virtualizing an ItemsControl?

I have an ItemsControl containing a list of data that I would like to virtualize, however VirtualizingStackPanel.IsVirtualizing="True" does not seem to work with an ItemsControl. Is this really the ...
10
votes
3answers
2k views

Should my ViewModel have an ObservableCollection of Views or ViewModels?

I'm trying to understand the basic MVVM design approach when using ItemsControl by binding it via DataTemplates to ObservableCollections on the ViewModel. I've seen examples that bind to ...
9
votes
1answer
3k views

WPF Dynamic Layout with ItemsControl and Grid

I am creating a WPF form. One of the requirements is that it have a sector-based layout so that a control can be explicitly placed in one of the sectors/cells. I have created a tic-tac-toe example ...
8
votes
4answers
1k views

How can a separator be added between items in an ItemsControl

I'm needing to display a list of numbers from a collection in an Items Control. So the items are: "1", "2", "3". When they are rendered, I need them separated by a comma (or something similar). So ...
8
votes
2answers
4k views

WPF UserControl in DataTemplate within ItemsControl - how to bind to parent of ItemsSource

The subject line says it all really! I have a user control which can be bound successfully to, say, a Fullname object - i.e. it works ok. I now need to show a list of these and, again, this works ok ...
7
votes
1answer
2k views

What exactly does Panel.IsItemsHost do?

I cannot find any good documentation for the Panel.IstItemsHost attached property. I see plenty of examples of people setting it on the ItemsContainer template for an ItemsControl, but the ...
7
votes
1answer
3k views

ItemsControl, VirtualizingStackPanel and ScrollViewer height

I want to display a important list of items using an ItemsControl. The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm working on: The sample ...
7
votes
4answers
5k views

Can a WPF ListBox be “read only”?

We have a scenario where we want to display a list of items and indicate which is the "current" item (with a little arrow marker or a changed background colour). ItemsControl is no good to us, ...
6
votes
2answers
1k views

WPF: Alternating colors on a ItemsControl?

How do I get alternating colors on a ItemsControl? I have AlternationCount set to 2, but the ItemsControl.AlternationIndex property always returns 0. <ItemsControl ItemsSource="{Binding}" ...
6
votes
2answers
384 views

WPF Custom Panel/Control Creation — “The Doughnut”

I'm hoping to create a custom panel or control that creates a very particular type of item. Basically, the intent is to have a control that you can give a list of objects to, and it will put each of ...
6
votes
4answers
3k views

Silverlight: Datagrid like grouping in ItemsControl

Is it possible to group items in a ItemsControl or Listbox in Silverlight? These controls are bound to a DomainDataSource. Or are there any 3rd party controls that do this? UPDATE: This is the sort ...
6
votes
4answers
2k views

Stretching controls to fill ItemsControl

I am attempting to write a simple WPF learning project which creates a set of buttons inside a resizeable main window. There is to be one Button per entry in a collection, and the contents of that ...
6
votes
2answers
2k views

WPF - UserControl default Content attribute

I'm creating a UserControl and I just can't remember the name of the attribute which you use to decorate the property which you want to act as the default content property. To give a concrete ...
6
votes
3answers
2k views

WPF - ItemsControl - How do I get find my “CheckBox” item that is in the ItemTemplate?

I have the following (very simple) ItemsControl: <ItemsControl Name="BlahList" ItemsSource="{Binding Blah}"> <ItemsControl.ItemTemplate> <DataTemplate> <CheckBox ...
5
votes
1answer
119 views

Grid with named RowDefinition fails to populate as ItemsPanel in WPF4

I have a Grid defined in an ItemsControl ItemsPanelTemplate, and one of RowDefinitions has a x:Name defined (so I could animate the row size). <ItemsControl ItemsSource="{Binding Data, ...
5
votes
4answers
252 views

Grid of Checkboxes in WPF

I have a WPF UserControl's datacontext tied to a class like this: public class CheckBoxGridViewModel { public List<List<bool>> Checkboxes {get; set;} } I want it to display a grid of ...
5
votes
2answers
3k views

ItemsControl, ItemsPanel and ItemsPresenter (Silverlight, XAML)

I'm utterly confused by these 3 terms, when to use which? What's the relationship and they are children of which controls? Is it correct to say this is the tree: ItemsControl > ItemsPresenter > ...
5
votes
1answer
4k views

Bind to ItemsControl's DataContext from inside an ItemTemplate

I have an ItemsControl whose for the ItemTemplate DataTemplate contains a Button. I want the Command on the button to bind to a Command on the DataContext of the ItemsControl, not the ItemTemplate. I ...
4
votes
4answers
406 views

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl

i have a problem with WPF Binding. I want to bind a list of Months to a ItemsControl that shows a Calendar Control for each month. But each rendered Calendar shows DateTime.Now,not the bound ...
4
votes
1answer
470 views

What's the easiest way to sort an EF4 EntityCollection<T>?

I'd love to add some sorting to an EntityCollection that is bound to an ItemsControl (in xaml). I'd also like to do it as simply as possible. It appears that this is not possible. If I wrap the ...
4
votes
3answers
901 views

Is there an ItemsControl equivalent for text content?

I have some data that I want to present in a FlowDocument. This will basically be a view that explains the data in a friendly way, with section headers, paragraphs of text, etc., and which I will ...
4
votes
2answers
844 views

Print WPF ItemsControl Across Multiple Pages

I've got an ItemsCollection hosted inside a ScrollViewer that is large enough to span multiple pages when printed. I've so far managed to print a single page using PrintVisual(itemsControl) but from ...
4
votes
1answer
2k views

WPF Databound Bulleted List

How do I create a databound, bulleted list of hyperlinks in WPF? I've got this: <ItemsControl Name="lstScripts"> <ItemsControl.ItemTemplate> <DataTemplate> ...
3
votes
1answer
48 views

Scrolling Marque in Silverlight

I need to create a scrolling marque in my Silverlight application. The marque needs to scroll from right-to-left. When its done scrolling, it needs to restart automatically The trick is, that I need ...
3
votes
1answer
80 views

ToggleButtons in ItemsControl bound to an ObservableCollection

First of all i want to excuse my English. What i want to achieve looks very simple but i'm a bit lost in the implementation. Background: I have an ObservableCollection of Contacts. these contacts ...
3
votes
1answer
140 views

Reordering rendered items for derived ObservableCollection<T> in ItemsControl on PropertyChange

I have an ItemsControl bound to a sorted (via CollectionViewSource) derived ObservableCollection of view models. In my derived collection class, I'm handling PropertyChanged on my view models. When a ...
3
votes
2answers
780 views

Style within DataTemplate is only being applied to the last item in ItemsControl?

In the XAML below, I have an ItemsControl that has three DataObjects. I use a DataTemplate to display DataObjects as Buttons with an "X" on them. The Button uses a Style to set its Content. If the ...
3
votes
1answer
231 views

How does VirtualizingStackPanel decide when to unload (dispose?) of virtualized controls?

I'm working with an ItemsControl using a VirtualizingStackPanel in its ControlTemplate. I've got the virtualization working, to some extent. I've put debugging statements in the Loaded and Unloaded ...
3
votes
3answers
169 views

ItemsControl “Overflow to Popup”

I have an ItemsControl that I want to fit into a small space. Typically it will display less than 3 items, however, I would like the it to indicate when it has more items than it can display and have ...
3
votes
1answer
122 views

Creating an infinite Silverlight ItemsControl

I'm interested in creating an ItemsControl for Silverlight that "loops" the items. When the user scrolls to the end of the list the ItemsControl should then show the first item(s) in the list. If ...
3
votes
1answer
1k views

WPF - Bind to Item Index from within ItemTemplate of ItemsControl?

Is there a way to bind to the ItemIndex from within the ItemTemplate of an ItemsControl? For example: <ItemsControl ItemsSource="{Binding Path=ItemList}"> <ItemsControl.ItemTemplate> ...
3
votes
1answer
260 views

How to increase padding displayed items combobox?

I want to write XAML template of a combobox to increase the spaces/padding between items. I searched for this but almost end up with the ItemsPresenter: <ItemsPresenter x:Name="ItemsPresenter" ...
3
votes
2answers
453 views

Is binding an ItemsControl to an ObservableCollection<T> more efficient than a List<T>?

I have a render-heavy item template in an ItemsControl and want to minimize the recreation of child item templates when ItemsSource signals a change. I am wondering if, because ObservableCollection ...
3
votes
1answer
463 views

Multiple user controls share collection dependency property

I have implemented my own usercontrol based on listboxes. It has a dependency property with type of a collection. It works fine when I have only one instance of the usercontrol in a window, but if I ...
3
votes
3answers
1k views

Silverlight ItemsControl with Alternating ItemTemplate

Silverlight does not support Alternating Item Templates in an ItemsControl. I have a few ideas in mind as to how to accomplish this, but to avoid polluting the potential answers, I'll leave them out. ...
3
votes
3answers
1k views

Silverlight: Set Items Widths in ItemsControl to Stretch

I've got an ItemsControl which fills from top to bottom, but I can't get it's child items to occupy the whole width of the ItemsControl: I basically need to stretch the green bits to fill the width ...
3
votes
3answers
254 views

WPF How to set a maximum amount of results from CollectionViewSource

I am trying to display a set of data using a DataTemplate in an ItemsControl, with the ItemsPanel set as a uniform grid of size 3 x 3. The ItemsSource of the ItemsControl is set to bind to a ...
3
votes
4answers
2k views

WPF Show data from multiple DataContexts in ToolTip of ItemsControl

I am trying to display a tooltip for an item generated by an ItemsControl that needs to pull data from conceptually unrelated sources. For example, say I have an Item class as follows: public class ...
3
votes
3answers
10k views

How to get a List<string> collection of values from app.config in WPF?

The following example fills the ItemsControl with a List of BackupDirectories which I get from code. How can I change this so that I get the same information from the app.config file? XAML: ...
3
votes
1answer
3k views

Scroll a new item in a ItemsControl into view

I have an ItemsControl that is databound to a ObservableCollection. I have this method in the code behind which adds a new model to the list. I would then like to scroll the new item (at the bottom of ...
3
votes
2answers
2k views

Show items in an itemscontrol in two columns (WPF)

I have an items control that is bound to a collection of objects. The object has two properties (name, value) that i display in a textblock and textbox respectively. The list is quite long and I would ...
3
votes
2answers
703 views

WPF ItemsControl - Command on ViewModel not firing from within ItemsControl

I'm using M-V-VM and have a command on my ViewModel called 'EntitySelectedCommand'. I've trying to get all the Items in an ItemsControl to fire this command, however it's not working. I think it's ...
3
votes
1answer
272 views

How do I bind a List<string> to an ItemsControl?

In my presenter I have this property: public List<string> PropertyNames { get; set; } And I want to list out the names with a ItemsControl/DataTemplate like this: <ItemsControl ...
3
votes
2answers
1k views

WPF - How to stop an ItemsControl psuedo-grid's columns from dancing/jumping around during layout

Several other questions on SO have come to the same conclusion I have -- using an ItemsControl with a DataTemplate for each item constructed to position items such that they resemble a grid is much ...
3
votes
5answers
643 views

How do I access the children of an ItemsControl?

If i have a component derived from ItemsControl, can I access a collection of it's children so that I can loop through them to perform certain actions? I can't seem to find any easy way at the ...
3
votes
4answers
9k views

Finding control within WPF itemscontrol

Hi i have few a single textbox within the the datatemplate for itemscontrol. When i binf the itemcontrols to a observable collection i get two text boxes. But i need to do some manipulations based on ...
3
votes
2answers
4k views

Using StackPanel as ContentControl (WPF)

So I have a StackPanel that I am using as a ContentControl. I have a place where I want buttons to be generated based on data that I am binding to, and that is all working good, but I want the ...

1 2 3 4 5 8