Tagged Questions
The findname tag has no wiki summary.
3
votes
2answers
3k views
Is there a workaround for the missing FindName method in Silverlight's DataTemplate?
According to the C# compiler and the Silverlight 2 documentation, Silverlight doesn't provide a FindName method for the DataTemplate class. I want to find a Border that's inside a ContentPresenter. ...
2
votes
2answers
97 views
Children.Add() and RegisterName()
Currently pulling out ma hair over the following problem. My code adds Rectangles to a Grid as follows:
Dim rect As Rectangle
' Set a bunch of properties of rect here'
myGrid.Children.Add(rect)
It ...
2
votes
1answer
557 views
UserControl child controls and FindName
I have a Silverlight UserControl which uses the ContentPropertyAttribute to exposes the Children property of one of it's child panels. This allows me to add child controls to the panel on my page:
...
2
votes
2answers
693 views
WPF Combox.FindName() doesn't work
I've got two comboboxes. The items of the first one i'm filling in Xaml with:
<ComboBox Name="ddl_pageType" Width="200" BorderThickness="5">
<ComboBoxItem Name="Website" ...
1
vote
1answer
270 views
Silverlight Tab Control, FindName not always working properly
I have a silverlight user control which is "bound" to a Document object. the document class contains an array of Field objects. The intention is that when the control is bound to a document, each ...
1
vote
3answers
3k views
WPF - FindName Returns null when it should not
FindName is broken for me :(
If you are an expert in such things I would love some help.
The object I am looking for is there. I have proof.
Here is the scenario:
ToggleButton button = ...
1
vote
1answer
2k views
Why doesnt Window.FindName() discover the x:Name of a button in a child UserControl? AKA how do NameScopes work?
So in the example code below, I create a UserControl UserControldChild which is a child of the main Window, Window1.xaml. Why does the FindName() method fail to find the "myButton" in the code below?
...
1
vote
3answers
2k views
How to Find Children of a UserControl instead of a Window - replacing Window.FindName
I currently have a WPF project which has one main Window, and many UserControls which are children of this Window. Many of the children of this window are Tabs. I have successfully replaced my main ...
0
votes
1answer
217 views
XAML Named element not found by FindName
I am having problems finding an named object declared in XAML in my codebehind file.
I want to initalize a ViewModel from inside my View. However I also need a reference to the ViewModel in my code ...
0
votes
1answer
178 views
PowerShell WPF from XML Findname Problem
I just tested an early PowerShell WPF example from here
#requires -version 2
Add-Type -AssemblyName PresentationFramework
[xml] $xaml = @"
<Window
...
0
votes
1answer
240 views
Finding Dynamically generated Wcf Controls by FindName()
The FramworkElement.FindName() method of finding a control within a parent control seems like it should straight forward...
But I am upping the anty and it seems like the framework does not like what ...
0
votes
1answer
1k views
Access Elements inside a DataTemplate… How to for more than 1 DataTemplate?
I've got 2 DataTemplates defined for a Listbox Control. 1 Template is for the UnSelected State and the other one is for the Selected State(showing more detail than the UnSelected State).
I followed ...
0
votes
1answer
640 views
WPF - TreeView.FindName() problem
How come TreeView.FindName() can find things added to the Xaml doc at compile time but not dynamically added at runtime?
0
votes
1answer
2k views
Find ItemTemplate control in TreeView
My tree definition is:
<TreeView Name="tree" ItemsSource="{Binding Children}" >
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
...