The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
32 views

Get specific UIElemet from grid in Windows Phone with visual tree helper

I have grid view in windows phone xaml page and this grid contains many UI element like buttons, checkboxes and textboxes. I want to search some specific UIElement by name from that grid and want to ...
0
votes
1answer
14 views

Getting the Logical UIElement under the mouse in WPF

It seems that all of the way of retrieving an element under the Mouse relates to Visual Hit testing. Is there some mechanism that I'm missing which would allow me to grab the actual UIElement that ...
0
votes
0answers
39 views

Visual and Logical tree traversal does not retrieve several levels

I'm exploring logical and visual trees from the same application without success going deeper through the levels. My code uses a generic explorer: private static void ProcessGenericTree(object ...
0
votes
1answer
25 views

Can't create a simple LogicalTreeHelper that will list all logical members of a window

I used a VisualTree helper to get all the Visuals in my window but sometimes some certain controls are not listed in the returning list . That's because they are still not rendered (as far i ...
0
votes
0answers
16 views

Using VisualTreeHelper.HitTest to get the 3D coordinates from mouse position

I want to get the 3D coordinates from the mouse position on a viewport3d( which contains several 3D objects). I read in some forums that this is done by using VisualTreeHelper.HitTest but I really ...
0
votes
0answers
20 views

Different refresh result while setting FrameworkElement PropertyInfo in two different ways

Sample code to change displayed "text" of a Framework Element: //FrameworkElement c as input retrieved via VisualTree/LogicalTree-helper // SearchKey does something not important var x = ...
0
votes
0answers
40 views

Why is the Visual Tree empty on an ItemsControl Container?

I have a requirement get access to particular visual elements in any given view. This is easy on statically declared items in xaml since they are available anytime. However, datatemplated ...
0
votes
1answer
106 views

LogicalTreeHelper.GetChildren - ObservableCollection Move() causing ContentControl in DataTemplate to lose it's content?

This is very strange. The point of the code below is to support an attachedProperty which will notify a container if any of it's children have received focus. i.e. I have a Grid with a textBox ...
0
votes
3answers
63 views

LogicalTree Control directly under mouse no VisualTree

This is a WPF application. I'm trying to get the control directly under the mouse and it's proving to be a surprising pain. Mouse.DirectlyOver, InputHitTest and VisualTreeHelper.HitTest all ...
1
vote
1answer
139 views

iterate wpf controls

I am very new to C# and I am lost once again.I hate to ask this question, but I am beyond lost in understanding how this works. I am trying to iterate through my TextBoxes on a WPF form to clear the ...
6
votes
1answer
157 views

Why does the Parent property of a container of an ItemsControl return null and not the Panel it sits on?

This one has me stumped. We have a custom ItemsControl which uses both custom containers as well as a custom panel as its ItemsHost. Now the panel has some metrics that the containers need for ...
0
votes
2answers
163 views

VisualTreeHelper not finding children of DependencyObject, How can I reliably find objects?

I have a UserControl called ZoneContainer. This has a property that which contains a ListBox containing a number of ListItems. Each ListItem contains a DockPanel. I'm trying to use a the following ...
0
votes
1answer
112 views

Silverlight Custom effect, get parent

I am trying to create a custom effect by inheriting from Effect. <Ellipse Width="75" Height="75" Stroke="LightGray"> <Ellipse.Effect> <local:GlowEffect GlowRadius="10"/> ...
0
votes
1answer
109 views

C# WPF VisualTree for pageframe

Working with WPF, C# and a tabbed page window. I'm trying to cycle through all controls on the form, but its failing to do so with the VisualTreeHelper. If I have a window with a TabControl on it, ...
0
votes
1answer
428 views

Why VisualTreeHelper.GetChildrenCount() returns 0 for Popup?

I move focus to the Popup on its opening: wcl:FocusHelper.IsFocused="{Binding RelativeSource={RelativeSource Self}, Path=IsOpen}" FocusHelper class code: public static class FocusHelper { ...
1
vote
1answer
1k views

VisualTreeHelper.GetChildren does not find children of TabItem

I have the following C# code to find children of a DepedendencyObject: public static IEnumerable<T> FindVisualChildren<T>(DependencyObject parent) where T : DependencyObject { ...
0
votes
2answers
103 views

Force visual tree creation with Prism

I have a TabControl containing Prism regions. I want to trigger some kind of notification (e.g. flashing the tab header) for certain events, and I want to trigger this notification from the components ...
0
votes
1answer
613 views

Get ContentPresenter/ItemsPresenter from control

I need a way to access the ContentPresenter/ItemsPresenter from a control if it does exist. I can't figure out how to easily do this with VisualTreeHelper. Will I need to recursively search all ...
0
votes
3answers
76 views

Searching the element using predicate condition

How could I find a framework element in VisualTree by a predicate? Something like that : public static FrameworkElement FindChild(FrameworkElement root, Predicate<> predicate) { ... } I'm ...
0
votes
0answers
47 views

SL4: How to expand search area for FindElementsinHostCoordinates()?

We use this code to get a list of visible TextBox-derived objects: GeneralTransform gt = this.scrollViewer.TransformToVisual(Application.Current.RootVisual as UIElement); Point offset = ...
0
votes
0answers
128 views

Traversing the visual tree when parts of tree is not visible

You can easily use the VisualTreeHelper-class to traverse the visual tree when the elements in XAML is visible. Currently, I am using the following code to do that view.xaml.cs (code-behind): ...
1
vote
1answer
166 views

VisualCollection to Visual HitTest invisible?

I am working with VisualCollection, Visual and HitTest in WPF and encountered a problem. I tried to make a custom visual drawing as follows: public class MyDrawing : Visual { VisualCollection ...
0
votes
0answers
141 views

WPF ToolBox Control - VisualTreeHelper returns null

I have toolbox control : <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Style ...
1
vote
1answer
201 views

Getting child properties in WPF Using VisualTreeHelper not returning values

Once I use visualTreeHelper.getchild to find a child object, how would I get the name of that object, or even other properties of the object like width or height? i.e. This doesnt work: For i As ...
0
votes
0answers
122 views

Return coordinates of TransformToAncestor using Dynamic code in VB

I have been trying to get the coordinates of an image in a canvas. I am using visualtreehelper, but I am missing something. When I try to get the offsets, they always show as 0. Here is the code: ...
0
votes
0answers
218 views

How can I perform a Hit Test on one specifc 3d object in WPF?

I have a SphereMesh (inherits from MeshGeneratorBase as part of the Petzold.Media3D.dll) in my WPF 3D Scene. I also have thousands of ScreenSpaceLines3D objects on that sphere. I want to ignore ...
0
votes
1answer
410 views

Set focus on the first textbox of a listview

I have the listview: <ListView Name="listView2"> <ListView.View> <GridView> <GridViewColumn Header="Header 1"> ...
0
votes
1answer
174 views

“VisualTreeHelper.GetDescendantBounds()” returns Infinity

Why does the VisualTreeHelper.GetDescendantBounds(SomeVisualItem) method return (-Infinity,-Infinity,Infinity,Infinity)? The SomeVisualItem's Canvas.Left, Canvas.Top, Width, ... are explicitly ...
0
votes
2answers
357 views

If the DataTemplate is nested in another Datatemplate it's hard the binding with a father-template property

Have youI know that the problem has been many times discussed in the web. But mine is a particular case and I still haven't found the right solution. Scenario: Silverlight 4 - A TreeView with data ...
2
votes
2answers
238 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}"> ...
0
votes
1answer
2k 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 ...
2
votes
2answers
867 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 ...
0
votes
1answer
558 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
251 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 ...
2
votes
1answer
297 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 ...
5
votes
3answers
332 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 = ...
4
votes
2answers
643 views

WPF RibbonComboBox Height

Ok, I would have thought this was a simple question, but apparently it's got me confused. When I try to set the height of my RibbonComboBox, it's not moving actual size of it, just the box that ...
3
votes
1answer
592 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
452 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 ...
0
votes
1answer
974 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 ...
3
votes
2answers
3k 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 ...
0
votes
2answers
114 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
543 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
485 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 ...
5
votes
1answer
2k 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 ...
5
votes
2answers
1k views

What is the Silverlight's FindElementsInHostCoordinates equivalent in WPF?

I would like to perform a rectangual hit test on WPF Canvas component in order to get Controls that are overlapped by a Rectangle framework element. I found a Silverlight's ...
0
votes
1answer
736 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 ...
1
vote
1answer
768 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
648 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 ...
9
votes
3answers
14k 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?