Tagged Questions
The itemspanel tag has no wiki summary.
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 > ...
4
votes
2answers
137 views
Using HierarcicalDataTemplates in conjunction with TreeViewItem control templates
Good day,
I am having some difficulty figuring out how to template the following TreeView item layout:
I have several items, SearchList, which contains a collection of Search, which contains a ...
3
votes
1answer
453 views
ListView: define ItemsPanelTemplate in resource dictionary
I have a ListView which layout looks like a Windows Explorer view (icon + some details), bound to a list somewhere in the ViewModel.
My aim here is to be able to switch between explorer view or ...
2
votes
3answers
274 views
How to get ListBox ItemsPanel in code behind
I have a ListBox with an ItemsPanel
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<StackPanel x:Name="ThumbListStack" ...
2
votes
1answer
121 views
ItemsPanel Template has no effect
I'm trying to swap the ItemsPanel in a ListBox for a WrapPanel but the ItemsPanelTemplate on the style doesn't seem to be having an effect. The style is found and applied because the border and ...
2
votes
5answers
2k views
WPF - ItemTemplate not acting as expected
I have a UserControl which I'm using to display a list of UIElements. The control consists of a single ItemsControl with it's ItemPanelTemplate switched for a horizontal StackPanel, its ItemsSource ...
1
vote
0answers
212 views
Set ItemsPanel of a DataGridCellsPresenter via Style not working
I'm trying to set the ItemsPanel of a DataGridCellsPresenter in the Resources of my Window.
<Style TargetType="{x:Type DataGridCellsPresenter}">
<Setter Property="ItemsPanel">
...
1
vote
1answer
323 views
Use Radial Panel in Listbox, throwing exception VisualTree Single Element
I have a very simple radial panel with a few dependency properties like so:
public static readonly DependencyProperty RadiusProperty = DependencyProperty.Register("Radius", typeof(double), ...
1
vote
1answer
580 views
Silverlight's ItemsControl Canvas.TopProperty and Canvas.LeftProperty not used
I want to create a canvas where a user can drop UI elements (representing tasks). He can then drag them to rearrange them. The elements are contained in an ObservableCollection that is the ...
1
vote
1answer
900 views
WPF: Changing the layout of Tabs in TabPanel
Instead of at the top I wan't my tabs on the left side. I changed the template for the the TabControl so that the TabPanel would appear in first column and the second column would host the content.
...
1
vote
1answer
1k views
WrapPanel as ItemPanel for ItemsControl
Still fooling around with WPF and learning as I go. Trying now to build a dynamic grouping of controls ( mostly buttons but might include checkboxes and others ).
I had no idea what was the best way ...
1
vote
2answers
1k views
WPF change ItemsPanel and ItemTemplate in code behind
I have the following list in XAML:
<ListView Name="ListViewBack"
Margin="3"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ItemsPanel="{StaticResource ...
1
vote
1answer
679 views
WPF ItemsPanelTemplate not working
I'm trying to get an ItemsPanelTemplate working for a ListBox. The ListBox is used in a DataTemplate, and none of my implicit ListBox styles override the default visual style. For some reason, the ...
0
votes
0answers
13 views
Can ItemsControl group the bound collection?
I'm trying to determine if there's a way to use an ItemsControl to group items in the ItemsSource into individual ItemsPanels. Specifically, I'm trying to create a view such that a collection of say, ...
0
votes
2answers
38 views
Modifying an ItemsPanel's Grid RowDefinitionCollection
This is a followup for ItemsControl has no children during MainWindow's constructor
Based on the answer to SO question "WPF: arranging collection items in a grid", I have the following:
...
0
votes
1answer
103 views
Why is my TabControl ignoring my ItemsPanelTemplate?
I've used the ItemsPanelTemplate on other controls such as the ListBox, so I figured doing the same thing for the TabControl would be simple.
Apparently, I'm missing something and the TabControl is ...
0
votes
1answer
88 views
Stretch line to width of Itemstemplate canvas in itemscontrol
I have this code. For some reason I can't get the contentpresenter to stretch to fill the width of the canvas. Several of my attempts are commented out in the xaml.
<ItemsControl ...
0
votes
0answers
85 views
How to dynamically change ItemsControl's ItemsPanel
I am using WPF ItemsControl to display a list of items. How can I define the ItemsControl so that it switches the ItemsPanel between horizontal StackPanel and WrapPanel based on number of items in the ...
0
votes
0answers
231 views
WPF: ListBox SelectedItem and Canvas
I'm trying to get collection of Draggable items implemented in a ListBox . I can drag the items with the code at C# WPF Draggable UserControls in ListBox on Canvas , but I can't set the as selected, ...
0
votes
1answer
516 views
Proper usage of VirtualizingStackPanel in WPF
Can somebody please tell me how to properly use the VirtualizingStackPanel in WPF ? I've set a VirtualizingStackPanel in my ItemsPanelTemplate for my ItemsControl, and set it as my ItemsHost, but when ...
0
votes
2answers
411 views
How to obtain the panel within a treeview (WPF)
How can one obtain the panel that is used within a TreeView? I've read that by default TreeView uses a VirtualizingStackPanel for this. When I look at a TreeView template, all I see is ...
0
votes
1answer
460 views
How to make ListView change ItemControl to VirtualizingStackPanel at runtime
OK, so, I have a ListView-derived control that changes Grouping and ItemsSource on the fly. When I group such that the scrollbars dissapear, and then change my ItemsSource to a different ...
0
votes
1answer
570 views
Weird ItemsPanelTemplate issue (possible Silverlight bug?)
I'm trying to create a horizontally oriented stack panel that contains a vertically oriented stack panel of items. Here's my code.
First the XAML
<UserControl ...
0
votes
2answers
980 views
ElementFlow: Exception in MeasureOverride
I'm trying to use FluidKits ElementFlow-control in my application, but get an exception in the MeasureOverride method of ElementFlow.
Layout measurement override of element ...