The itemcontainerstyle tag has no wiki summary.
1
vote
2answers
50 views
What's the difference between ItemTemplate and ItemContainerStyle in a WPF ListBox?
In WPF Listbox, I'm confused with these 2 notions:
ItemTemplate and ItemContainerStyle
Can someone explain me more?
0
votes
0answers
65 views
Databinding in ItemContainterStyle - WPF - MVVM Light
I'm creating a custom ListBox with an ItemContainer that uses a Grid. The goal is to have each Item be added to a specific column, row, and have a specific rowspan. These numbers are set as bindable ...
0
votes
0answers
43 views
Set parent property in ItemContainerStyle
I've created a custom panel and put it into an items control.
<ItemsControl x:Name="ItemsControl" ItemsSource="{Binding Path=MenuItems}" >
<ItemsControl.ItemsPanel>
...
0
votes
1answer
88 views
Extend Custom TreeView itemcontainers style?
How can I extend upon the style I have declared in CustomTreeView? so that I have a lightgray foreground and a green background?
CustomTreeView.xaml
<TreeView ...
0
votes
2answers
110 views
How to set ItemContainerStyle only for the first level of TreeView?
I want to change ItemContainerStyle only for the items of the first level. And leave the default style for deeper levels. Is is possible?
0
votes
1answer
363 views
WPF ComboBox: How to you utilise a generic ItemContainerStyle with binding
I want to utilise a generic style for my ComboBoxItem content and have the text content bound to different properties on my underlying class. So this is the best I can come up with but the bindings ...
3
votes
2answers
188 views
Using Canvas as ItemsPanelTemplate and Binding Canvas.Top doesn't work
First of all I am coding a Windows Store app for Windows 8 with C# and XAML.
I am using a GridView to display a grouped Collection of Objects.
Each group is displayed as a single column where the ...
0
votes
0answers
140 views
Animate each dynamic MenuItem with a different storyboard
I have a Menu that is instantiated programatically on some event in code behind(c#).
The menu ItemsSource is set to a list of CustomMenuItems of class CustomMenuItem. The class contains a property ...
7
votes
1answer
2k views
How do I do bindings in ItemContainerStyle in WinRT?
I'm trying to bind a collection to an ItemsControl, with a Canvas as the items panel, and with each item's Canvas.Left and Top bound to properties on the item objects. Basically I'm trying to ...
0
votes
2answers
293 views
set value for listboxitem templated binding
I have this style:
<Style x:Key="SelectableListBoxItemStyle" TargetType="{x:Type ListBoxItem}">
<Setter Property="Template">
<Setter.Value>
...
0
votes
1answer
606 views
ListView losing GridView display when applying ItemContainerStyle
I have a WPF application in which I styled several components to look more like the default Windows 7 style. Now I wanted to do the same for a ListView, since the default style (even on Windows 7) ...
0
votes
1answer
323 views
Creating a custom ItemContainerStyle for a List ItemsSource
I'm trying to create a custom ItemContainerStyle for a ListView so that the text displayed is selectable. I'm looking to set the ItemsSource to a List<string>. If I were binding to a ...
0
votes
2answers
875 views
how to use EventToCommand in a ItemContainerStyle?
<ListBox Grid.Row="1" ItemsSource="{Binding Source}" SelectedItem="{Binding SelectedItem,Mode=TwoWay}" DisplayMemberPath="Name">
<ListBox.ItemContainerStyle>
...
0
votes
1answer
913 views
ItemContainerStyle blocks ItemContainerStyleSelector
I have the code:
<ListBox Style="{StaticResource DeviceListBox}"
ItemsSource="{Binding MeterList, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
...
2
votes
3answers
866 views
Unable to set icon for the menu item using ItemContainerStyle
I am trying to set the Icon of my menu item like this -
<Grid>
<Grid.Resources>
<Image
x:Key="ReportIconImage" Height="20" Width="20"
...
2
votes
1answer
1k views
DataTemplate vs ItemContainerStyle
I've seen a few other Silverlight 'vs' questions around, but couldn't find any for this particular match-up.
I'm trying to define the way in which my objects bound to a ListBox will display. I've ...
0
votes
2answers
444 views
Add object into WPF listview with ItemContainerStyle
I have a listview, with ItemContainerStyle, call StyleA.
the listview has itemSource of an ObservableCollection, which contain my class objects. StyleA will bind to the property of my class object ...
3
votes
2answers
2k views
WP7 ListBox ItemContainerStyle XAML disabled not working
I have the following style and list box:
<Style x:Key="LwHListBoxItemStyle" TargetType="ListBoxItem">
<Setter Property="Background" Value="Transparent"/>
<Setter ...
0
votes
1answer
1k views
ItemContainerStyle overriding Generic style
I'm referencing ExpressionDark.xaml from my App.xaml, which is working fine, however when I try to use an ItemContainerStyle in an ItemsControl, the items in the ItemsControl revert to the basic ...
1
vote
1answer
859 views
Focus and Selection Styling listbox items with multiple possible templates
Good afternoon,
I have a listbox that consumes a list of items from a model, Addresses and RAddresses (inherited from Addresses)
Now, previously I have been creating my item templates in the ...
5
votes
2answers
9k views
Specify ControlTemplate for ItemsControl.ItemContainerStyle
The following is similar to what I'm trying to accomplish. However, I get an "Invalid PropertyDescriptor value" error on the Template Setter. I suspect it's because I didn't specify a target type ...
0
votes
1answer
952 views
Binding ListBoxItem.ItemSelected to the bound item in Silverlight
I am using MVVM pattern with Silverlight 4 to bind a collection of TODO items to a ListBox.
There is a property IsSelected on each TODO entity. This allow for multiple selections to be made in the UI ...
1
vote
1answer
765 views
Having trouble with ItemContainerStyle on a Treeview
I have the following XML being set on my treeview:
<Root Value="YES">
<Child Name="Test">
<Sibling Data="Yes">
<Last UserData="1"/>
</Sibling>
<Sibling ...
1
vote
1answer
3k views
Strange Behaviour WPF TreeView ItemContainerStyle and ItemTemplate
I just noticed some strange behaviour of WPF's TreeView. I added both ItemContainerStyle to bind to "IsSelected" of my ViewModel and an ItemsTemplated for custom display of my data. But now the user ...
0
votes
2answers
795 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 ...
0
votes
2answers
2k views
WPF: Setting a binding for all TreeViewItem instance
Greetings,
I'm using WPF with a Model-View-ViewModel pattern, and I have a view model with an IsSelected property which I want to bind to a TreeViewItem's IsSelected property for all TreeViewItems in ...