python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
WPF: How to generate screenshots of items within a ItemsControl (within a TabView)
I have a TabControl where each tab is a user control that has an ItemsControl in it.
The TabControl is bound to a collection and has an ItemTemplate:
<DataTemplate x:Key="tabContentTemplate&qu...
R Rommel
Votes: 0
Answers: 1
How to bind to a collection inside of a collection?
I'm trying to bind an itemscontrol to a collection inside of another collection. To do this, I've layered an itemscontrol inside of another itemscontrol, like so:
<ItemsControl ItemsSource="{B...
monadoboy007
Votes: 0
Answers: 1
ComboBox binding inside Item template with IEnumerable collection
I have one class MovieSystem which inherits from AvailableMovies collection.
public class MovieSystem : IEnumerable<AvailableMovies >, IEnumerable
{
public AvailableMovies this[int i] { get...
Strange
Votes: 0
Answers: 1
WPF how do I change the binding of a ContextMenu inside an itemControl
My goal is to disable/collapse a menuitem if the user does not have the rights to it.
The binding i'm looking for is in my ViewModel as a boolean. I know that it's trying to find the property "Is...
Anthony Côté
Votes: 0
Answers: 1