0
votes
1answer
98 views

WPF VB.NET Binding Image Source From String in Data Template

My first WPF application (please be gentle!), and I'm making an app based on events during a football match. So I've set up a Player class, and one of the properties is Nationality eg: Scotland. Then ...
3
votes
1answer
56 views

DataTemplate as resource with customizable bindings

I have a DataTemplate that I use to present a value with symbol that looks something like this: <DataTemplate> <TextBlock VerticalAlignment="Center"> <TextBlock.Text> ...
0
votes
0answers
28 views

nested binding one datatemplate in another datatemplete is not working in winrt

i have an item control and bind a list(subsubname) to populate controls.all controls populated but there is a combobox i want to bind it to another list(Anatomy). But its not working combox displys ...
0
votes
0answers
24 views

previous list item's ViewModel field is set to nothing when list's selected item is changed to a new one

i am writing in VB for store app framework. Settings: I have a list of viewmodel objects. It is represented in a ListView. Selected item of this ListView is bound to Content property of a ...
0
votes
0answers
20 views

DataTemplateColumn with Color Picker FrameworkElementFactory bind converter?

I have a datagrid which i populate dynamically. Weill in one of the columns I want to have a colorpicker from the extended wpf toolkit. Also I want whenever the user changes color from the color ...
0
votes
1answer
107 views

ComboBox binding to select item based on equality of properties of two sources when using datatemplate

Please note: The two types in the lists are simplified a lot for this example and must be kept separate. The use of an int as connection between the types can not be changed. The problem: Given ...
1
vote
3answers
36 views

WPF Binding a Listbox to thing that has sub enumerables

I have a class like this: public class UIThing { public string Name{get;set} public IEnumerable<Thing> LotsOfThings; } I have some of these in a List (List<UIThings>) and I would ...
0
votes
1answer
26 views

How can I display an itemsCount for Expander content

I have spent wayyyy too much time on this, so if someone can help point me in the right direction, I would be very appreciative. I have an Expander with a ListBox in it. I have bound the ListBox to ...
0
votes
1answer
152 views

Binding Data to Panorama.TitleTemplate

I have been trying to customize the title area of my panorama page by using Panorama.TitleTemplate property and a dictionary for binding data to it without any success. My XAML code is as follow: ...
1
vote
0answers
45 views

Why is a ArgumentOutOfRangeException being thrown when datatemplate is not the current one being used

I am using a data template selector, as shown below: - public class ExampleTemplateSelector : DataTemplateSelector { public DataTemplate Foo { get; set; } public DataTemplate Bar { get; set; ...
2
votes
1answer
112 views

How to Bind To Data within a Datatemplate of a ContentControl

I have the following simplified Example: <Window x:Class="TemplateBinding.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
0answers
85 views

ComboBoxItem continues to throw binding error despite style

Good day, I have a combobox that I am populating via a CollectionViewSource. The items are build though a datatemplate for the incoming item type (in this case a ProjectViewModel). This is in WPF ...
0
votes
1answer
102 views

tricky command source issue

I'm trying to use the RadDiagram commands from a separate window. My bindings don't work because "Cannot find source for binding with reference 'ElementName=Diagram'". My (simplified) XAML looks like ...
2
votes
1answer
83 views

TwoWay Binding a Class that implements INotifyPropertyChanged, nothing happens

I have followed a couple of examples on the Microsoft website, the first involving ItemsSource: ItemsControl.ItemsSource Property the second: How to: Implement Property Change Notification Merging ...
0
votes
0answers
757 views

Template for WPF DataGridTextColumn ElementStyle and EditElementStyle with Binding

I have a WPF DataGrid that has 10 DataGridTextColumns displaying numeric data that require identical formatting. I want the EditingElementStyle number formatting (raw decimal or float) to be different ...
0
votes
2answers
37 views

WPF DataTemplate Lookahead/behind

I'm using an ItemsControl that is populated with a collection containing several different data types. Each data type has its own DataTemplate, and they are all displaying correctly, but my problem is ...
1
vote
1answer
252 views

Binding doesn't work when using custom control in DataTemplate

I'm trying to replace a standard control inside ListView DataTemplate with a custom control, but binding doesn't seem to work properly. Here is the definition of the ListView: <Grid> ...
1
vote
2answers
499 views

XAML DataTemplate Data Binding

I am trying to make an application for WP8, but I cannot for the life of me figure out how data binding works. I have tried example after example, which seem like they are doing pretty much exactly ...
0
votes
0answers
71 views

WPF Composite data template

I've faced the following problem: I have my hierarchical data in one composite ObservableCollection, where list elements are pairs of one ConfigurationDescriptor and list of JobDescriptors. So I ...
0
votes
0answers
101 views

Drag & Drop using Command in WPF

I have a HierarchicalDataTemplate in a resource file that defines the template for a TreeView, here is the (shortened) XAML code: <HierarchicalDataTemplate x:Key="BrowserDataTemplate" ...
0
votes
2answers
137 views

XAML binding code not working

I have small problem. Code behind: ... public struct Project { string Name; string Path; public Project(string Name, string Path = "") { this.Name = Name; this.Path = ...
2
votes
0answers
139 views

Image object rendering is extremly slow in WPF DataTemplate

I'm creating a simple file browser with thumbnails. I'm using a ListBox with a custom DataTemplate to display objects in an ObservableCollection. <DataTemplate> <StackPanel Margin="5"> ...
1
vote
2answers
667 views

XAML template binding in Windows 8

I am walking through Windows Store Sample Application XAML Twitter Client 1, to get the same features in my own application. But i can't get binding work in 1 to 1 sample page. This is my grid for ...
0
votes
1answer
459 views

How to get the current view inside a FlipView?

I have a FlipView with some controls in the DataTemplate. Since it's in a FlipView, it will generate multiple copies of those controls. If I want to find the control that is in the current FlipView ...
1
vote
2answers
426 views

listbox isSelected databinding in DataTemplate

I try to simply databind IsSelected property with IsSelected field in my class. But after I change the value in code, it doesn't change the property, neither does clicking on ListBoxItem change the ...
1
vote
1answer
226 views

Binding to value in parent page from in usercontrol in listview datatemplate in Windows Phone 7

I have a ViewCharacter page that has a View Model (CharacterViewModel) as its DataContext, in that CharacterViewModel I have an ObservableCollection of WeaponViewModel that a ListBox is using as an ...
1
vote
0answers
139 views

Data Binding Converter “does not implement interface member”

I am having problems using a binding converter written in code-behind, with the corresponding markup. It keeps giving me the same error: does not implement interface member ...
0
votes
0answers
88 views

Optionally set DataTemplate property from templated control

Intent I have a DataTemplate which is selected by a DataTemplateSelector to display data of certain type. That works in general, but now I need to make it possible to sometimes set an attached ...
0
votes
1answer
307 views

Using namespace in DataTemplate DataType

I am trying to show a list of videos from YouTube using a ListBox and the ItemsSource property. What I have right now works (Below), but now I need to format my data. <ListBox Name="lbVideos" ...
0
votes
1answer
431 views

How to bind content in a headertemplate of Panorama Item

I am working on Wp7 I have created a header template for Panorama Item Header in application resource (App.xaml): <DataTemplate x:Key="MainPanoramaHeaderTemplate"> <TextBlock ...
0
votes
2answers
534 views

WP7: Dynamically adding UIElements to a LongListSelector item

I'm trying to add UIElements to a LongListSelector item programmatically. I've created templates for the header, footer, items etc. Right now I'm doing something like this (the list item template): ...
0
votes
2answers
158 views

BindingOperations.ClearBinding(…) doesn't work when control is from a DataTemplate

I'm a bit stuck on this one. Clearing the binding of the TextProperty of some TextBox that is not part of a DataTemplate works fine. But when the TextBox is part of a DataTemplate, clearing the ...
1
vote
2answers
99 views

WPF binding to single control (not a list)

In a nutshell, what I'm trying to do, is create a DataTemplate to indicate how a customer banner should look. I've got this working in a very simple form, but only using a ListView control, to which ...
0
votes
1answer
379 views

Bind DataTemplate's parent's visibility (IsVisible or Visibility) to the ViewModel

Starting off with a classic datatemplate: <DataTemplate x:Key="RegularTemplate"> <Grid> ... </Grid> </DataTemplate> assume the ViewModel object that is being ...
0
votes
0answers
160 views

How to display image in DataTemplate based on 2 bound properties on object

Im binding a list to my User object ObservableCollection, so it automatically updates. Im using a template to display the user Name but I also want to display an image icon next to the name depending ...
3
votes
2answers
418 views

Binding to DataGridTemplateColumn using style applied within DataTemplate?

I have a ComboBox that composes a DataTemplate, and I'm having trouble binding its IsEnabled property to the IsReadOnly property on the templated DataGridTemplateColumn. I've been receiving the ...
3
votes
0answers
159 views

Binding instances being re-used in DataTemplate's when ValidationRule's can't be shared

I'm looking for a solution and/or the rationality behind why a Binding instance is shared within a DataTemplate. This ultimately comes down to the fact that within a DataTemplate, there's seemingly ...
0
votes
2answers
1k views

Different views / data template based on member variable

I have a view model called ViewModelClass wich contains a boolean. I have another view model which contains ObservableCollection<ViewModelClass> m_allProjects; Then I have this in my ...
0
votes
2answers
243 views

Bind DataTemplate to 'outside' property

I've got a TabControl which builds a list of TabItems from it's ItemsSource. Like so: <TabControl ItemsSource="{Binding Path =.}"> <TabControl.ItemContainerStyle> ...
2
votes
1answer
66 views

How to extract the Binding of a DataTemplate through its child elements?

I have a DataTemplate that is bound to a buisness class, it also contains a StackPanel: <DataTemplate DataType="{x:Type logic:Sensor}"> <StackPanel Name="SensorPanel" ...
1
vote
1answer
354 views

How to get a parent value in multibinding

I'm using dataTemplate. This is the template: <ItemsControl ItemsSource="{Binding RAM.Partitions}"> <ItemsControl.ItemTemplate> <DataTemplate> ...
1
vote
1answer
272 views

DataTemplate check if Binding exist

I had make an Button Style as DataTemplate in a ResourceDictionary. Here a small part: <Style TargetType="{x:Type Button}"> <Setter Property="Focusable" ...
1
vote
1answer
693 views

Use RelativeSource as a ConverterParameter in a style

I am trying to use a converter in an items control ItemContainerStyle to convert a property of an item in the ItemsControl to an X value. To do the conversion, I also need a reference to the parent ...
2
votes
1answer
384 views

RelativeSource in DataTemplate works with TabControl but not with TabItem

I am having a TabControl and within it a TabItem having a ContentControl. This ContentControl is applied a datatemplate. The code is here: <TabControl x:Name="tabControl1" Tag="Giving URI here ...
1
vote
1answer
783 views

Binding in behavior to datacontext of datatemplate in silverlight

I have a DataTemplate: <Style x:Key="SalesmanDestinyReportListBoxStyle" TargetType="ListBox"> <Setter Property="ItemsPanel"> <Setter.Value> ...
2
votes
4answers
272 views

How Do You Bind To An Item In A Dictionary?

I'm using the RadCarousel control from Telerik in a WPF application with C#. RadCarousel is similar to a GridView in that it binds to a collection and show's each item in the collection (so my ...
0
votes
1answer
364 views

Bind image in templated ListBox to ViewModel property

TL;DR - I had a binding error. Tired eyes miss things. I have implemented a multi-select CheckBox list using a ListBox as the container. Now, beside each checkbox in the list I want to display an ...
0
votes
2answers
279 views

Datatemplate get contents of child controls

I got a datatemplate <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <ui:UniformWrapPanel /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> ...
0
votes
1answer
419 views

Applying different styles to ItemsControl

I'm using a CompositeCollection to host objects I want to display in a ItemsControl control, I used this solution to implement using different DataTemplates for the different objects, however I want ...
0
votes
1answer
157 views

Binding to two different DataContexts in a ContextMenu

I'm trying to bind to a property of a container from inside a DataTemplate. A simplified version of my markup looks like: <Grid> <Grid.Resources> <DataTemplate DataType="{x:Type ...

1 2 3 4