Tagged Questions
The visualtreehelper tag has no wiki summary.
7
votes
3answers
7k 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
2answers
158 views
How can I unit test something that uses VisualTreeHelper?
I have this static helper function:
public static DependencyObject GetParentObject(DependencyObject child)
{
if (child == null) return null;
ContentElement contentElement = ...
3
votes
1answer
1k views
FindElementsInHostCoordinates Relative To Control Space Not Entire Page
I'm using the VisualTreeHelper method FindElementsInHostCoordinates to find a ListBoxItem at the given X and Y location. However, X and Y value appear to be related to points in the entire page not ...
2
votes
2answers
216 views
FrameworkElement.Parent and VisualtreeHelper.GetParent behaves differently
In a WP7 app, I used FrameworkElement.Parent recursively to determine whether a specific element is inside of another element. But it does not always work correctly.
Then I changed my code to use ...
2
votes
1answer
177 views
Curious whether there is another way to validate all TextBoxes in a ListView
Here is what i have....shown is part of the ListView. What currently happens is this: User clicks on New button to create a new row. User may or may not enter info into the contained ...
2
votes
2answers
1k views
Problem with VisualTreeHelper.HitTest in WPF
I'm trying to hit-test a bunch of UserControls on a Canvas. I don't want the HitTest() to walk the whole way through the visual tree, so I'm using the FilterCallback to make sure I only hit-test the ...
1
vote
2answers
37 views
ItemsControl has no children during MainWindow's constructor
Based on the answer to SO question "WPF: arranging collection items in a grid", I have the following:
<ItemsControl Name="itemsControl1" ItemsSource="{Binding MyItems}">
...
1
vote
1answer
367 views
How to access new visual tree when WPF TabControl SelectedItem changes
Considering an already loaded and rendered TabControl with three tabs, with selected tab being index 1 (the middle one):
Tab 1: Has one TextBox
Tab 2: Has two TextBoxes
Tab 3: Has three TextBoxes
...
1
vote
1answer
243 views
Getting ListBox Items Silverlight
I have tried to get the listbox items using VisualTreeHelper class. When I do VisualTreeHelper.GetChildrenCount((DependencyProperty)listBox1) it returns count as 0. But the listbox has lot of ...
1
vote
1answer
364 views
Get the parent listview from a gridview object
In the code-behind of a WPF application I have a variable containing a GridView. I know for sure that this GridView is the View of a ListView. Is there any way to get a reference to that ListView?
...
1
vote
1answer
540 views
How to detect if a Surface Contact is over a ScatterView?
This is a (kind of) similar situation as in the SDK Sample Shopping Cart for MS Surface.
I have an application with two ScatterViews. The first covers the complete Surface window ('surface'). The ...
0
votes
0answers
55 views
WPF - ListView DragDrop to TreeView (find TreeViewItem under Mouse Cursor)
I have an MouseMove event on my TreeView which tell me the TreeViewItem which is under the mouse cursor, but when I start a drag & drop process, the MouseMove event isn't fired. So I can't detect ...
0
votes
0answers
50 views
Get the target hit object
I have a bunch of objects stacked vertically inside a Grid. The objects are of a custom control type: Rule which has the shape of a rectangle. What I'm trying to achieve is that once I drag and drop a ...
0
votes
1answer
441 views
Silverlight 4 - Visual Tree helper returns 0 child Elements?
I have the following code that is supposed to find an element inside of something. The problem is that I have a DataGrid, whose first column has a CheckBox in it's header. The checkbox itself is ...
0
votes
0answers
142 views
WPF VisualTreeHelper.HitTest returning wrong result
I have a canvas with 4 rectangles I'm using as buttons and a line that is following the user input around (I'm working with the Kinect so I don't have a cursor).
I am getting the following results
...
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
103 views
Problems with VisualTreeHelper Hit test in landscape
I'm using the FindElementsInHostCoordinates method to find elements as the user swipes his finger across the screen. I'm noticing that it is reacting to if the phone was in portrait. For example - As ...
0
votes
0answers
106 views
Get UIElement's potential placement before adding it into InkCanvas in WPF
I am trying to figure out how to get Coordinates for the Shape that is returned by the InkAnalyzer's GetShape function. I have tried using VisualTreeHelper functions, but they all either seem to ...
0
votes
1answer
394 views
Bounds rectangle of selected controls in wpf
Is there a simple way to find the rectangle (area and location) that would be required to cover a set of control?? VisualTreeHelper.GetDescandentBounds() works fine, but there are no overloaded ...
0
votes
2answers
66 views
How to calculate a bounding box for an Expander?
I have an Expander control and i need to calculate its bounds without invisible elements and margins. It commonly can be done by VisualTreeHelper.GetDescendantsBounds. But it seems that the rect is ...
0
votes
2answers
297 views
SIlverlight: Can't find Image on Canvas
In my Canvas, I have an image object. I haven't set a source in it, but it has coordinates and a size. The tag is:
<Image Canvas.Top="50" Canvas.Left="20" Height="68" Width="110" ...
0
votes
1answer
340 views
Finding the TextBlock that is part of the default control template ComboBox generated through code
I'm trying to find the TextBlock that is inside the control template of a comboBox.
using VisualTreeHelpar.GetChildrenCount is working only if the comboBox is declared in XAML.In that case ...
0
votes
1answer
368 views
How can you “plug into” the WPF rendercycle to get accurate results from VisualTreeHelper?
I am currently writing a WPF User control (PARENT) which can contain multiple child (CHILD) user controls. I am connecting the (CHILD) controls with polylines.
To do this I need the locations of the ...