Tagged Questions
1
vote
0answers
21 views
Design-time DataContext in a DataTemplate?
When I put a DataTemplate in a <Page.Resources> section, it inherits the DataContext of the Page when editing bindings inside the designer. However at run-time the DataTemplate is being used by ...
0
votes
0answers
25 views
Reach DataContext's property in DataTemplateSelector class to choose a inner Data template in the nested DataTemplates/Collections
I use nested DataGrids. Both are implemented in a user control, and are imported in my View:
SimulatorView:
<UserControls:HistoricalPageTable DataContext="{Binding ...
0
votes
1answer
314 views
Bind to main DataContext from TabControl's DataTemplate
I'm trying to use a single DataGrid as the content for each tab in a tab control (I'll then reload the contents of the grid, to show models at different statuses when clicking on different tabs).
...
0
votes
0answers
189 views
DataContext of DataTemplate in ToolTip Style in WPF
I can't seem to find the right DataContext for the Grid in the ToolTipStyle Style. Just a blank ToolTip appears.
<Window.Resources>
<DataTemplate x:Key="ListTemplate">
...
0
votes
1answer
34 views
DataTrigger Overflow exception
How can this be an overflow exception...?
<DataTemplate x:Key="ElementTemplate">
<StackPanel Orientation="Horizontal">
<StackPanel.Style>
...
1
vote
2answers
1k views
WPF Listbox & MVVM binding
I am following MVVM in C# and am attempting to display a view in a listbox.
I am setting the listbox itemsource (in code, not in binding and using the viewmodels collection) and then set the ...
0
votes
4answers
277 views
Add items into DataContext via loop
I have following code in C#, WPF:
base.DataContext = new DataTemplate[]
{
new DataTemplate
{
lblText = "First",
...
0
votes
1answer
871 views
How to set the DataContext for a View created in DataTemplate from ViewModel
There are questions on this already, but they don't answer my question.
For example:
<ContentControl.Resources>
<DataTemplate DataType="{x:Type Databinding:RedScreenViewModel}" ...
1
vote
0answers
166 views
Set the datacontext of the context menu with in a data template
Below is the code snippet:
<ResourceDictionary>
* * *
<DataTemplate x:Key="xyzTemplate" DataType="arguments" ...
0
votes
1answer
217 views
Setting the objectinstance to the current data item
I am fairly new to WPF, have been working on finding an answer to this for a couple days without much luck, it seems like there should be a way. I have set up a DataTemplate whose DataType is a ...
0
votes
1answer
167 views
Silverlight4 Element Binding Weirdness
I'm a bit of a .net newbie and I've been working on my first big silverlight project. So pardon the lack of lingo and the length of the question. But my problem is as follows.
The project is being ...
1
vote
1answer
69 views
How to access the DataTemplate of a DataObject that has the DataTemplate with DataType assigned?
I have a DataObject and a DataTemplate that has the DataType=x:Type DataObject.
I have a ContentControl which has as Content the DataObject.
On OnContentChanged() of that ContentControl I need to ...
1
vote
1answer
243 views
Binding DataTemplates (or another aproach)
I'm having some troubles trying to dynamically generate content in WPF and after it bind data.
I have the following scenario:
TabControl
- Dynamically generated TabItems through DataTemplate
- ...
1
vote
2answers
571 views
Validation (with custom ErrorTemplate) for a DataTemplate
I can't figure this guy out / in desperate need of assistance.
I have an ItemsControl and a DataTemplate as the ItemTemplate
i.e.
<DataTemplate>
<StackPanel>
<TextBox ...
1
vote
2answers
3k views
MVVM + Datacontext + DataTemplate + Blend = problems
I'm currently using MVVM in a WPF project, all works very well.
I have one Master view and many Detail views that I manage using a currentView property in my MasterViewModel. By using a datatemplate, ...