The visualtree tag has no wiki summary.
7
votes
3answers
8k views
WPF Get Element(s) under mouse
Is there a way with WPF to get an array of elements under the mouse on a MouseMove event?
3
votes
1answer
1k views
DataTemplate defined in XAML has null VisualTree
I'm using WPF with .NET 3.0.
I have a relatively simple DataTemplate defined as the CellTemplate for a GridView. I expect the DataTemplate's VisualTree property to contain a FrameworkElementFactory, ...
1
vote
1answer
198 views
Can I remove a ChildWindow from the VisualTree and put it back in to achieve FullScreen?
I have a popup that is a ChildWindow. Inside that popup I have a UserControl (MediaPreviewView) that has a MediaElement and some buttons to control the video. My requirements state that I need a ...
1
vote
0answers
121 views
When clearing a root datacontext by removing from visual tree, binding further down the tree remains
[Silverlight]
I have a large visual object tree I'm removing from the visual tree (Grid.Children.Clear()), upon removal the DataContext of the root nulls out, but further down the tree a binding which ...
1
vote
1answer
190 views
WPF - How to detect when new Visual child elements are added?
Based on some custom security settings, I alter window child controls to readonly and disabled. To accomplish this, I loop through child controls when the window loads.
This works just fine. 99% ...
1
vote
1answer
602 views
WPF TabControl Children
This is my current Scenario: I have several UserControls inside different TabItems on a single TabControl in a WPF Window. Something Like:
<Window x:Class="MainWindow"
...
1
vote
2answers
369 views
Move UIElement in Visual Tree without recalculating layout
We have a WPF application (.Net 4.0) using a Docking Control (Actipro). We can dock out the docking windows. In that case, a "real" Window is created and the content is assigned to that window.
Of ...
1
vote
0answers
124 views
Walk the Model3DGroup tree!
I have a complex 3D scene consisting of Model3DGroups that I need to analyze at runtime. Since Mode3D nodes do not participate neither in the VisualTree nor in the LogicalTree is there any other way I ...
0
votes
1answer
366 views
WPF 3.5 nested datagrid row details not showing in Visual Tree
So I build a nice nested datagrid that look something like this:
<dg:DataGrid x:Name="mainGrid"
AutoGenerateColumns="False"
CanUserAddRows="False"
...
0
votes
1answer
254 views
How do I add an element to the visual tree in Silverlight
Here is my specific problem:
Xaml:
<local:ShrinkableContentControl x:Name="m_ShrinkableContentControl">
<Border Background="SkyBlue">
<Button Click="Button_Click_1" ...
0
votes
4answers
1k views
ListBoxItem.Parent returns nothing, unable to get it thru VisualTreeHelper.GetParent either
How do I extract the parent container of a ListBoxItem?
In the following example I can go till the ListBoxItem, higher than that I get Nothing:
<ListBox Name="lbAddress">
...
0
votes
2answers
176 views
Walk the VisualTree in a worker thread for fulltext search
I am using WPF to show complex data (think reporting). I now need to have a fulltext search for it. We currently do this by walking the visual tree looking for textblocks. It seems that this needs to ...