Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
4k views

Binding ElementName. Does it use Visual Tree or Logical Tree

Having {Binding ElementName=foo}, will it lookup visual or logical tree? http://blogs.msdn.com/mikehillberg/archive/2008/05/23/Of-logical-and-visual-trees-in-WPF.aspx When does the logical tree ...
3
votes
2answers
498 views

How can a CanExecute of a commandBinding fire once the element has been removed from the visual tree?

I have a related question here where i have a user control with a command binding. The user control has being removed from the visual tree, yet the canExecute is still firing. My understanding of the ...
2
votes
1answer
138 views

how to test the speed of visual tree rendering in silverlight?

For example, I create a Canvas that contains a big amount of Shapes like this: var canvas = CreateCanvasThatContainsShapes(); Then I add all the canvas to main page: layoutRoot.Content = canvas; ...
2
votes
3answers
162 views

Clear TextBlock from Button when they both are in a DataGridTemplateColumn

I have a DataGrid with DataGridTemplateColumn. The DataGridTemplateColumn contains a button and TextBlock. I want that pressing the button will clear the textBlock's text. How do I do that ? XAML: ...
2
votes
2answers
327 views

WPF: How to walk up the Visual Tree to find a Model3DGroup a clicked 3d-model is in?

I'm displaying a few 3D-models as Model3DGroups. They are surrounded by Viewport3D which catches MouseDown-events. I want to determine which Model3DGroup (they all have names) was clicked. I'm ...
1
vote
2answers
43 views

Set the properties of an auto-generated ContentPresenter

Consider the following part of a visual tree in a Windows Phone SL application: As you can see, a PanoramaItem template contains a reference to a static DataTemplateSelector. It is a simple class ...
1
vote
1answer
43 views

Actual Visibility in WPF

In WPF an element can have a Visibility of "Visible", but not be actually visible on the screen because it's parent (or parent of parent) has Visibility of Collapsed. I want to be able to know if a ...
1
vote
2answers
57 views

How come I can only have one instance of a Silverlight UserControl per page?

Its pretty lame, but I tried adding two UserControl's to my Silverlight Page, and I get an exception telling me (with extensive digging) that the same control name has been used to the visual tree ...
1
vote
1answer
207 views

How do I use parent's ItemsHost for HierarchicalDataTemplate in XAML?

I have a tree- or menu-like data structure which I want to display in a Panel (specifically a self-made PolarPanel), but all items must be VisualChildren of the same panel. If I define a ...
1
vote
1answer
45 views

Replace a control within a user control through dependency property

I've made a simple project to illustrate my problem. I have a user control ('ButtonPod') that houses a button and a rectangle: <UserControl x:Class="SilverlightDependencyProp.ButtonPod" ...
1
vote
2answers
316 views

Set control to top most silverlight

[Situation] I have a custom item control which I add to a stack panel and after that is freely to move around by dragging. public partial class CustomItem: UserControl { private bool IsDragging ...
1
vote
1answer
315 views

Help with using the visual tree in Silverlight

I have a question of how I can use the visual tree helper to get an object that I need. I have a user controll called DialogItemControll that I call from my main page like this: DialogItemControll ...
1
vote
3answers
645 views

Silverlight & Visual Tree Manipulation

Now this may be more trouble than it's worth but nevertheless, it'd be really useful to me right now. What I'd like to know is how I might go about manipulating the Silverlight visual tree at ...
1
vote
1answer
1k views

Removing an item from the visual tree in a generic way

I would like to remove a FrameworkElement from the visual tree. Since the FrameworkElement has a Parent property, it would be obvious to solve this problem by removing it from there: FrameworkElement ...
1
vote
0answers
150 views

How to access inner TreeViewItem nodes without expanding the parent node

I have a WPF TreeView that is bound to a collection of custom objects - each of which has an IsExpanded property to expand the container TreeViewItem. I want to be able to programmatically access each ...
1
vote
1answer
30 views

How do I check for when my control obtains or changes the visual parent?

I want to hook my control's visual parent's events.
1
vote
2answers
1k views

WPF: Binding ContextMenu to visual parent

I know ContextMenus aren't part of the visual tree, but I've been trying to bind the Visibility property of a ContextMenu to a property on its parent UserControl. So far I've tried ancestor binding ...
0
votes
4answers
36 views

Visual Tree - Find a label (anywhere on the window) where content equals

I have many labels as children of many different stack panels which are all children of a list box, and I need to reference one of these labels were the Content.toString() == "criteria". In other ...
0
votes
2answers
37 views

Get Window's visual content

I currently have this line of code which I want to work in all cases: var visualWindowContent = (UIElement)window.Content; This approach will work when Window.Content is a UIElement. But what ...
0
votes
0answers
14 views

How to navigate visuals in a DataGrid in WPF?

I have a DataGrid which is using DataGridTemplateColumn. And in those DataGridTemplateColumn's CellTemplate I am using DataTemplate, which includes many of our re-defined TextBlock controls. The ...
0
votes
0answers
266 views

How does one Inspect and Navigate Silverlight Visual Tree using only the Javascript API?

I'm working on a solution to automating the UI of a Silverlight application which is set to run in windowless mode. Fortunately enableHtmlBridge is set to true and I've set up a simple WPF ...
0
votes
1answer
1k views

Concepts of Visul tree and Logical tree

I understand the concepts of Visual and logical tree but still I am not able to understand the real use and need of these. Although its not necessary to know everything about these trees but I believe ...
0
votes
1answer
536 views

Is there a way to move controls in the visual tree? (WPF)

I want to relocate some controls from one part in the visual tree to another. can I do this? and direction or hint on how to?
0
votes
2answers
217 views

WPF - fast way of getting the visual tree

I am adding some controls dynamically within a grid. I will not know how many and I will not know the exact hierarchy. What I want to do is to access some controls that have a specific type (Button ...