0
votes
0answers
22 views

When is the PropertyChangedCallback fired

I have trouble understanding a problem that occured to me. I Have a UserControl that is structured somwhat like this. public class SomePage : Page { public static readonly DependencyProperty ...
0
votes
2answers
38 views

Loading ObservableCollection with datetime values from an array

I have a ListView in a Class called HistoryStatistics and its template looks like this. Every item will have a button and two textblocks. <ListView x:Name="HistoryLV" Grid.Row="1" ...
-1
votes
1answer
71 views

Binding a progress bar to Loading property

I have a ProgressBar in my view which I am trying to bind to a loading property in my data model. I get an error when the property changes because it's a boolean and it's expecting an ...
0
votes
1answer
37 views

Bind property to method

I am developing a Windows 8 App in C# and using databinding <CollectionViewSource x:Name="departments" Source="{Binding Departments}" d:Source="{Binding AllGroups, ...
0
votes
1answer
49 views

Binding User Control Property with another Property

In my Windows Store Application I want to bind a Property in a user control with another Property in logical class the User Control "Card_UC.xaml.cs" contains this Property: public string Card_ID { ...
1
vote
0answers
31 views

WinJS.Binding multiple sources

I'm new to data binding, but it looked like an easy way to achieve what I need to do. My problem (as you can see) is that I have two (or more) of these boxes with different data on each page. The ...
8
votes
2answers
389 views

Custom detail pages in Windows 8 grid application

I have created a simple C# Windows 8 grid application. If you're unfamiliar with this layout, there is a brief explanation of it here : Link What I would like to have is simple - some custom ...
1
vote
1answer
91 views

Apply Value Converter on changed value in TextBox

I have a simple WinRT (Win8, .NET/C#/XAML) project. One of my XAML TextBox controls has a custom StringValueConverter attached, which formats a databound value from the View Model. This works great, ...
0
votes
4answers
129 views

C# How make a single selection binding to a multiple selection in a gridview on winrt?

I come to you today because i don't know how to make a multiselection binding in a gridview. Today i know how to make a single and get the result but i don't know how to make this for multiple ...
1
vote
0answers
68 views

INotifyCollectionChanged insufficient for databound control to update?

I'm trying to implement a bindable collection - a specialized stack - which needs to be displayed on one page of my Windows 8 app along with any updates made to it as they happen. For this, I've ...
0
votes
1answer
22 views

Can I use existing metro classes to create a bindable string not connected to a visible ui control

I am writing a windows 8 app (for myself) that generates g-code for some auto generated paths. When generating the g-code I want to use textual templates that can be written and edited by myself ...
1
vote
2answers
117 views

GridView is not scrollable during dataBinding?

I'm creating a Windows 8 app (not a desktop one). My problem is the following: I have a GridView with a lot of items (received from a database). When you get to the page, where this GridView is shown, ...
0
votes
1answer
116 views

Adding items to ListView throws Catastrophic Failure exception

I have this List View and a Button: <ListView x:Name="MyList" ItemsSource="{Binding}" Grid.Row="1"></ListView> <Button x:Name="Add" Content="Add Item" Click="Add_Click" Grid.Row="2" ...
0
votes
2answers
579 views

windows store app Listview Binding

I have a class with data: public class routedata : INotifyPropertyChanged { private List<double> distances; public List<double> Distances { get { return ...
0
votes
1answer
67 views

Unable to get reference to clr object in Xaml for data binding

I'm trying to follow along with the code example for data binding to a clr-object. The example states <DockPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
98 views

One Way binding to an object in Windows 8

I have an Observable collection of objects that implement the INotifyPropertyChanged interface and this is bound to a ListView. I have created a DataTemplate for the ItemTemplate within which I have ...
0
votes
1answer
192 views

DevExpress Grid App (DXTREME) - How to bind to the ItemNavigationTargetType?

I am working on my first windows 8 application using the devexpress grid app template provided in the New Wizard. Everything is working out fine but however, I would like to bind the MenuItems to ...
0
votes
1answer
140 views

Using SQlite to bind GroupedItems Template but only getting GroupNames

This code is from the datasource class. I am fetching the list of customers from the SQLite database and storing it in ObservableCollection. Using GetGroups() I am creating the groups based on some ...
1
vote
2answers
195 views

Strangeness with DataContext and GridView / ListView

I have a Windows 8 store app based off of the grouped template project, with some renames etc. However, I'm having a hard time getting the ItemsSource databinding to work for both non-snapped and ...
1
vote
0answers
150 views

How do I serialize the object I am passing as a parameter from page to page in a Windows Store App

I am working on a Windows Store app and I am having an issue serializing my DTO classes back to the xml file that I was able to deserialize. After data-binding and changing some data I can't figure ...
2
votes
1answer
133 views

Crash when “Create Data Binding” in Blend for Visual Studio 2012

Blend for Visual Studio 2012 always freeze when I click on "Create Data Binding". I am using Windows 8 Professional 64 bit on MacBook Pro. Have anyone experience the same error I am having?
1
vote
1answer
77 views

XAML binding to an immutable struct

I have some DownloadOperations in my Windows 8 app. The DownloadOperation has a property Progress which contains Status, TotalBytesToReceiveand BytesReceived. I tried to data-bind to those in my XAML ...
1
vote
2answers
725 views

How do I bind rich text (FlowDocument?) from my view model to a RichTextBlock?

The only examples I've been able to find online for binding text to a WinRT RichTextBlock look like this: <RichTextBlock> <Paragraph> <Run Text="{Binding Content}"/> ...
0
votes
2answers
480 views

Windows 8 ListBox Databinding

I have a listbox I'm trying to databind to with a "metro" app. Here is my xaml: <ListBox x:Name="ImagesList" Margin="40" Grid.Row="1"> <DataTemplate> ...
0
votes
3answers
383 views

WinJS ListView and Template Binding

So I'm trying to display via a template some data from a JSON request. The data has some nested objects (of varying amounts) similar to this: data: "Some data", nested: [ { nested_data: "foo", ...
0
votes
1answer
104 views

How to bind class fields to ItemTemplate

I have a Windows Store App project. I created a Items Page. It's all default and i want to bind my custom class to it's GridView so that the elements can be properly displayed. The GridView's ...
0
votes
1answer
529 views

How do I bind HTML to a DataTemplate's WebView? [duplicate]

Possible Duplicate: How to access NavigateToString property of a WebView in a ListView I have a list of items that use a DataTemplate for each items presented. Within this template I have ...
0
votes
0answers
116 views

Bind ListBox selected color to SelectedItem's property

I have a ListBox control bound to an ObservableCollection<ToDoCategory> as ItemsSource="{Binding Categories}. Inside the ToDoCategory there are CategoryName and CategoryColor (both strings). ...
0
votes
2answers
394 views

Updating UI in windows 8 C#

I have a page called AllPageView which has a GridView. The datatemplate for the GridView is as follows <GridView.ItemTemplate> <DataTemplate> <Canvas Width="{Binding ...
1
vote
2answers
653 views

Binding to object in WinRT

I'm looking for a way to achieve the following in a Windows 8 app: <TextBlock Text="{Binding ., Converter={StaticResource MyConverter}, ConverterParameter=x}" /> The TextBlock is inside a ...
0
votes
1answer
742 views

Boolean to Visibility Converter in Win RT XAML not working first time

Strange one when working in XAML for Windows RT (windows store app) today, when IsValid=true is set from my view model my boolean to visibility converter does not work the first time (my path remains ...
2
votes
1answer
244 views

Binding a List to a UserControl Property

I'm having a bit of trouble getting my User Control to bind to a List<>. It works great when I attempt to do something like: public string Map { get { return (string)GetValue(MapProperty); } ...
2
votes
2answers
531 views

Binding to a UserControl “Failed to assign to property” error (Windows 8)

I am making a Windows 8 app in VS2012 and trying to bind a list of objects (cards) to a user control that will display two strings. Here is my code for the user control on one page: <FlipView ...
2
votes
3answers
302 views

Bind to a DataTemplate dynamically

I have a ListBox and multiple DataTemplates, in separate files. <ListBox ItemTemplate="{StaticResource ItemTemplate1}"/> In the Styles.xaml file: <DataTemplate ...
1
vote
1answer
904 views

Best practice for conditional styling (or Style.Triggers->DataTrigger equivalent) on Windows Store app?

I have exhausted my internet searches and cannot seem to find the best practice on styling my Windows Store App XAML elements based on data binding conditions? ...
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 ...
1
vote
1answer
240 views

semantic zoom grouped data binding and accessing individual items

I'm binding data to my ZoomedOut semantic zoom as so: var result = from title in _allTitles group title by title._titleSubject into grp orderby grp.Key select grp; groupedTitlesSource.Source = ...
0
votes
2answers
145 views

How to bind to Button BorderThickness?

I have created a custom style in xaml, for the Button class. Here is the relevant part: <Rectangle Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding ...
1
vote
1answer
380 views

Windows Metro Style app data binding

I have a requirement to load images from a folder in the project to a stackpanel. Under each image a name should also be shown. The image folder can change at any time and the number of images can ...
7
votes
2answers
2k views

“UpdateSourceTrigger=PropertyChanged” equivalent for a TextBox in WinRT-XAML

In WPF, we can update the underlying data model whenever the user makes any change to the data by leveraging UpdateSourceTrigger like this: <TextBox Text="{Binding Path=TextProperty, ...
0
votes
2answers
85 views

How to data bind based on emptiness of a collection?

I want to make a TextBlock visible only when a collection is empty. I have a ListView that is data-bound to the collection already and that's simple. I just want to display something else when the ...
1
vote
2answers
217 views

How do you define a single blendable design time instance?

The default Windows 8 project template has a CollectionViewSource in the template. <CollectionViewSource x:Name="itemsViewSource" Source="{Binding Model.Invitations}" ...
2
votes
2answers
2k views

windows 8 metro app collectionviewsource databinding issue

I have a collectionviewsource <CollectionViewSource x:Name="groupedItemsViewSource" ItemsPath="Items" /> and give it as the itemssource to a gridview ...
2
votes
1answer
3k views

WinRT XAML data binding a List of objects that contain a List

I have a List of objects that contain another List. I want to bind both Lists to different controls (one nested within the other - a ListView as GridViewItem). But I can't get the xaml to work. Very ...
0
votes
1answer
155 views

Bind second level of nested arrays in XAML on Windows 8

I want to bind a two-level-nested array to a XAML control in a Windows 8 Metro-style App. The array looks like (with A, B, C being the elements of the top-level array) A --W --X B --Y C --Z and I ...
0
votes
2answers
227 views

How can I manually add an item to GridView.Items after binding ItemsSource?

I currently have a GridView populated with ItemsSource binding to an ObservableCollection. It's showing the items as I intended but I'd like to manually add one more item at the end that looks and ...
1
vote
1answer
208 views

LINQ to Twitter setting users account image c#

I am attempting to fetch the users profileImageURl and bind it to an image. I have got the following C# code: namespace IIVVYTwitter { public sealed partial class MainPage : Page { ...
1
vote
1answer
862 views

Windows 8/ Metro UI data-binding javascript

I am creating an application using javascript/HTML for windows 8 which basically displays text which is pulled from an html file. I am using the data.js file to organise groups and items. One of the ...
3
votes
1answer
1k views

How to update a data bound combobox when the source data changes?

I'm working on a C# Metro style app for Windows 8, and I'm having a problem getting my data bound combo box to update when the source data changes. Here's the data source: public class Range { ...
0
votes
2answers
1k views

TwoWay Binding Not Updating Target - Metro App

I'm building a Metro App using VS 2012 and the Windows 8 SDK. In the app, I have this class (with a corresponding struct) // Parameter data structure for tools public struct ToolParameter { ...

1 2