Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
908 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 ...
1
vote
1answer
311 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 ...
1
vote
2answers
2k 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 ...
1
vote
1answer
306 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
2k 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
3answers
61 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
46 views

ItemContainerStyle blocks ItemContainerStyleSelector

I have the code: <ListBox Style="{StaticResource DeviceListBox}" ItemsSource="{Binding MeterList, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" ...
0
votes
2answers
272 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 ...
0
votes
1answer
349 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 ...
0
votes
1answer
403 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 ...
0
votes
1answer
542 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 ...
0
votes
1answer
428 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
1k 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 ...