I\'m working on a problem that seems like it might be solved by applying an Attribute to the DependencyProperty.I got curious and I can\'t find documentation that lists all the XXXAttribute classes th
I have the following DependencyProperty: public bool IterationSelected { get { return (bool)GetValue(IterationSelectedProperty); }
I have this DependencyProperty: public bool ShowEntireHierarchyEx { get { return (bool)GetValue(ShowEntireHierarchyExProperty); }
I have a control with a ComboBox: <ComboBox x:Name=\"TraceComboBox\" ItemsSource=\"{Binding SingleChannelList}\"
I have a two userControls (IconUserControl & DisplayUserControl), I\'m having a problem with binding dependency properties, here\'s some detail:
I know ContextMenus aren\'t part of the visual tree, but I\'ve been trying to bind the Visibility property of a ContextMenu t开发者_如何学运维o a property on its parent UserControl. So far I\'ve tried
If I have a ChildWindow in Silverlight I can apply the FontSizeProperty and it is inherited by child items.
I\'m using a viewmodel pattern, so my DataContext for my custom user control is actually a viewmodel wrapper for the real data.
I am subclassing an ItemsControl (let\'s call it EnhancedItemsControl), and I would like to expose ScrollViewerTemplate dependency property, which would allow the user to optionally specify his own te
I have been wrestling with getting databinding to work in WPF for a little over a week.I did get valuable help here regarding the DataContext, and I did get databinding to work via DependencyPropertie