0
votes
1answer
18 views

Binding Pushpin Background in XAML ControlTemplate doesn't work

I have a primary color used throughout my Windows Phone app, but I don't seem to be able to bind it to a Pushpin.Background in XAML. Instead I have to resort to creating the Pushpin in the C# code ...
0
votes
2answers
41 views

Windows Phone 8: How to Bind from ICollection

I'm on windows phone 8 project and i'm new on this platform. I was doing binding from xaml side very well but i generated another new web api classes and i couldn't bind any item from ICollection. ...
0
votes
2answers
28 views

ComboBox (two-way) binding to object property

In the database, table TblPerson has a CHAR(1) field called Gender with a check constraint on possible values null, 'M' and 'F' I'm trying to display (and two-way bind) the (EF mapped to type string) ...
0
votes
1answer
21 views

XAML binding windows phone template

I have a page showing pics with text below it (like a Tile), In xaml I simply bind to a image and text property, and then in the c# code I set the listbox's itemssource to my specific data. Now ...
0
votes
2answers
23 views

How to change value of selected item in ListView by choosing it from another ListView?

I want to allow user to build an action sequence of fixed length. For that I have two list views: - number 1 displays grouped list of all possible single-step actions - number 2 displays action ...
0
votes
1answer
23 views

data binding from panorama item

Here is my situation... I have one Panorama which obtain JSON data from a web service. It contain News, which include image, Title, content, post date, and type of news. Now I can generate that ...
0
votes
1answer
67 views

Binding value to custom radio button in list box item template (WP8)

I have created my own radiobutton to include index property as following: public class IndexedRadioButton : RadioButton { public int Index { get; set; } } I am using this custom radio button ...
0
votes
1answer
17 views

setting ConverterParameter in style

<Window.Resources> <ResourceDictionary> <Style TargetType="{x:Type propgrid:PropertyGridDataAccessorItem}"> <Style.Triggers> ...
1
vote
1answer
31 views

How to bind List of Objects to a ListBox

I have tried to bind a List of objects to a ListBox, but when run it has no items in the ListBox, the List itself does have items. List<Module> _modules public class Module { public ...
0
votes
2answers
44 views

WPF - Binding doesn't work with inherited attribute

I've a problem to use binding in a ComboBox. <ComboBox Margin="2" x:Name="itemSelector" SelectionChanged="itemSelector_SelectionChanged"> ...
-1
votes
2answers
31 views

Binding List of objects to ListView not working

There is a problem with my ListView binding, it is not showing anything in the list. I have the following ViewModel: namespace Users.ViewModel { public class AllUsersViewModel { ...
0
votes
1answer
22 views

Add behavior to RadioButton in ItemsControl (Windows 8 Search)

I'm implementing the search contract (results page) of a Windows 8 application. I've designed everything to follow MVVM. With that, I'm trying to wire up a command to the 'filtersItemsControl' that is ...
-1
votes
2answers
50 views

WPF Combobox initial dictionary binding value not showing

I have a wpf combobox bound to a property LogicalP of a class SInstance. The ItemSource for the combobox is a dictionary that contains items of type LogicalP. If I set LogicalP in SInstance to an ...
0
votes
1answer
12 views

Understanding how to map events in xaml

I don't know C# events very well so I have difficulties in understanding some code I found in internet Inside the code behind of a view file there is the following method: public void ...
1
vote
1answer
32 views

Button Visibility binded to SelectedItem

I'm having a little problem with Binding... I want to bind 2 buttons with the SelectedItem of a ListBox. The ListBox contains several values and displays them (Name, Age,...). When the user selects ...
1
vote
1answer
39 views

Binding to a property by variable name (ideally from xaml)

I'm trying to databind (ideally from XAML as i know how to do this in code behind but it would be far from trivial to traverse my heavily templated tree just for that) to a property who's name i only ...
0
votes
1answer
27 views

Assign a converter to a member of ancestor for binding in xaml

I wanted to know how to assign my converter to a member called ConvertPoint in the ancestor Viewport? <DataTemplate DataType="{x:Type local:TestShape}"> <DataTemplate.Resources> ...
0
votes
1answer
60 views

WPF - Cannot bind to a DataTemplate from within a DataTemplate

I cannot bind to a DataTemplate from within another DataTemplate, is this due to the data source not being present at runtime? <Page ...
0
votes
1answer
31 views

Binding value as ConverterParameter

In my resourceDictionary I have a following style: <Style TargetType="{x:Type propgrid:PropertyGridDataAccessorItem}" x:Key="{x:Type propgrid:PropertyGridDataAccessorItem}"> ...
0
votes
0answers
19 views

How can I bind event to Item of ComboBox?

I want a code similar below: <ComboBox ItemsSource="{Binding Path=MyItemSource, Mode=TwoWay}"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock ...
1
vote
1answer
31 views

How can i make this custom expander a non-hardcoded height?

I downloaded some code for a custom expander and have changed it to the way I want, with one exception. The Height is hard-coded to 100 when expanded. I need this to act like the normal expander and ...
0
votes
1answer
48 views

How do I add a row to my list view?

I can't seem to get this to work. Anyone have any ideas why? Here is the markup: <ListView Width="210" Height="83" Margin="0 0 5 0" Name="FiltersListView"> ...
0
votes
2answers
57 views

MVVM Properties in ViewModel?

I have a view which binds to a ViewModel DataContext="{Binding MyViewModel, Source={StaticResource Locator}}"> the textboxes, ... are binding to the propertys IN the ViewModel: <TextBox ...
0
votes
2answers
51 views

Binding StackPanel Children to an ObservableCollection

I have an ObservableCollection of buttons: public partial class MainWindow : Window { public ObservableCollection<Button> myBtCollection { get; set; } public ...
0
votes
1answer
26 views

WPF - Binding internal datagrid with external datagrid

Need a little help. In XAML, I've got the following layout: <DataGrid Name="outerGrid" ItemsSource="{Binding fullData}"> <DataGrid.Columns> <DataGridTextColumn ...
1
vote
2answers
74 views

ItemsControl Element is already the child of another element

I am trying to add controls dynamically into my ItemsControl. I am using RadHubTile control but I think this applies to any control. My XAML <ItemsControl x:Name="itemsControl" ...
0
votes
1answer
35 views

Data Binding or DataContext issue when binding a ListView from multiple sources

I cant quite figure out how to bind my list view to both properties in my ViewModel and a list in my view model. Is it possible to override the ListViews ItemsSource and bind a Checkbox within the ...
0
votes
0answers
39 views

XAML timer-triggered binding update

Suppose you have textbox whose value is time-dependent, like say, the the time passed since the application was started. Is it possible to express a solution in pure XAML which automagically ...
1
vote
0answers
55 views

DataContext change on UserControl not updating child control's property

I've got this simple control: <UserControl x:Class="MyProject.Controls.ImageToggleButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
40 views

Binding TextBlock To Observable Collection

I am trying to bind a textblock to a item in a observable collection. Below is the class and the property for the collection. Am I binding correctly? Thanks! public class ListStuff { public ...
0
votes
1answer
67 views

GridView does not refresh changes to items when using LayoutAwarePage.DefaultViewModel

In a "Blank App" (Visual C#, Windows Store), I create a new "Grouped Items Page", then declare a MyItemViewModel class deriving from DependencyObject with a Dependency Property for a String Title. ...
0
votes
1answer
12 views

Using dependency properties

I have I very simple WPF game: It has a couple of buttons and some labels. Every time the user clicks on a button I have a counter that I raise by 1. I want to show to counter value on every label on ...
3
votes
1answer
66 views

Set culture for a WPF DateTimePicker validation

I use a DateTimePicker on a WPF application. I would like to bind the .Text property to the SelectedDate, so I use binding like this: <DatePicker x:Name="DateTimePicker_Date" ...
0
votes
1answer
47 views

How do I bind TwoWay between a CheckBox in a UserControl and the ViewModel in the wider scope?

I have a UserControl that has a CheckBox on it. When I consume the UserControl on my main XAML page, I'd like to TwoWay bind a property on the control to a property on my ViewModel e.g. ...
2
votes
2answers
120 views

XAML Binding to parent of data object

I have a grid column defined. The parent grid gets its items from an ObservableCollection of type ItemClass. ItemClass has two properties: String Foo, and bool IsEditAllowed. This column is bound to ...
0
votes
0answers
45 views

binding files to longlistselector

Trying to learn Win Phone 8, following along an online tutorial. In the tutorial, the guy uses the ListBox to show files, which is working fine for me. However, I thought we're supposed to use ...
0
votes
1answer
30 views

Access other xaml controls data in another control's event

I have below listbox to which i am binding data from a class(SavedDataClass) defined.When user clicks on link "Update" i want to access the entire data of other members of that particular instance of ...
0
votes
1answer
28 views

Is it possible to switch transformations on and off via binding in xaml?

I want to activate transformations via checkboxes. In my sample I have two checkboxes, which should swap the text in a label in x or y direction respectively. Is this possible without code behind? ...
0
votes
0answers
80 views

Metro/Windows Store App C++ TemplateBinding user controls to visiblity

I have a user controls with various elements inside the controltemplate. I am trying to set the visibility of the border element via TemplateBinding, but I am having difficulty doing this. Initially ...
0
votes
1answer
104 views

Binding DataGridComboBoxColumn

I am trying to bind ObservableCollection of T to DataGridComboBoxColumn of DataGrid. DataGrid definition is : <DataGrid AutoGenerateColumns="False" Grid.Row="0" ...
1
vote
2answers
35 views

Change Image Source when the Parent Button change its enabled state

I have this XAML code: <Button x:Name="ButtonUpdate" IsEnabled="False"> <Image Source="Images/update gray.png" Name="ImgUpdate" > <Image.Style> <Style ...
1
vote
1answer
44 views

UpdateSourceTrigger not being applied to Styled Control

I recently solved a styling question with some help here at stack overflow... (you can see the question/ answer in my history) As a result of that, I came up with the following style to apply to ...
0
votes
0answers
77 views

Binding GridCellSize to LongListMultiSelector results in error: Value does not fall within the expected range

I get a design-time error when binding the width of a GridCell in my 'toolkit:LongListMultiSelector' to the width of the containing 'toolkit:LongListMultiSelector'. <toolkit:LongListMultiSelector ...
0
votes
1answer
54 views

WPF TabControl Proprty Binding with Child Elements

I have a WPF 4.0 TabControl that has three TabItems (aka Children). Basically each Child has a color, in other words each Tab will have a color. I want to bind the background of TabControl to the ...
0
votes
1answer
94 views

MVVM - Binding Expression errors when createing a View in XAML with a ViewModel DataTemplate

This is a WPF application. Background: I essentially have a Wizard application. The Wizard is initialized by providing a list of ViewModels. These ViewModels will create the appropriate view based ...
1
vote
1answer
67 views

DataBinding of a ComboBox after InitializeComponent()

I have two ComboBox on my code: <ComboBox Name="comboBoxSelectCamera" ItemsSource="{Binding Path=ListCameras}" SelectionChanged="comboBoxSelectCamera_SelectionChanged" /> <ComboBox ...
0
votes
2answers
28 views

I want to select the same row on the 2nd listview after i select it on the 1st listview in wpf, how can that be done?

So i have two list views that are related by the first column (TestID). I want the row to be selected automatically on the 2nd listview when i select the row on the 1st listview. This is what i have ...
1
vote
1answer
380 views

WPF Error 40 BindingExpression path error: property not found on 'object'

I'm banging my head on my desk with this binding error.. I have checked several of the postings for the BindingExpression path error and cannot see anything that works with my situation. Anyway, I ...
2
votes
1answer
65 views

How to bind to the DataContext of a HierarchicalDataTemplate from its ItemTemplate XAML?

In my WPF TreeView, I have defined a HierarchicalDataTemplate. In its ItemTemplate, there is a button whose Command I need to bind to the parent ViewModel, this is the DataContext of the parent ...
1
vote
1answer
48 views

Binding to a Brush property with INotify

When I try to bind a label's foreground to a brush property (CurrentBrush) that implements INotify, the foreground doesn't get updated when the value of CurrentBrush changes. I've done other bindings ...

1 2 3 4 5 20