Tagged Questions
0
votes
1answer
55 views
Custom binding to Accordion control in Silverlight
Is there a way to bind a collection to an Accordion control in Silverlight but have one of the Accordion items be a list of items common to the collection. For example, I have several types: Client, ...
0
votes
0answers
90 views
Silverlight UserControl with DataContext Change issue
I have created a usercontrol and i consumed in my mainPage.and I have UserControlViewModel and MainPageViewModel.
I have added UsercontrolViewModel in UserControlViewModel as a property with ...
0
votes
0answers
94 views
DuplexChannelFactory (Silverlight) working at Runtime but not at Designtime
I've the following code:
var bind = new PollingDuplexHttpBinding();
bind.MaxReceivedMessageSize = 2147483647;
EndpointAddress myEndpoint = new ...
0
votes
1answer
38 views
Datacontext using in Template to Root
I want to turn the buttons in a datagrid visible or collapsed, dependend on a local window property.
The following item works at LayoutRoot
<navigation:Page ...
0
votes
1answer
242 views
Silverlight: Preventing authentication window / login prompt while connecting SharePoint with different credentials using DataContext (REST)
I'm programming a Silverlight client to consume a list in Sharepoint 2010 using REST. It's supposed to work as a gadget on users Windows desktop.
My requirement is, logging into Sharepoint with ...
0
votes
1answer
221 views
Silverlight - What does my datacontext/binding path need to be here?
I've been working a bit with an image editor in Silverlight for the past week or so. It's my first encounter with it and I still haven't fully gotten my head around data bindings and datacontext or ...
3
votes
1answer
203 views
WPF DataContextProxy in resources section
I’m having trouble using a DataContextProxy in my WPF application. When I place a DataContextProxy in the Resources section of a Grid it is never loaded. If I move the DataContextProxy out of the ...
0
votes
0answers
823 views
UserControl's Resources as UserControl's DataContext?
Is it possible to give UserControl's Resources(Or one of its resource) as UserControl's DataContext?
I tried to bind a Button's Command Property in a DataGrid's CellTemplate to a property in my ...
1
vote
1answer
59 views
In an ItemControl binding to property doesent work but binding to DataContext does
when I run this code the Item-object in my CustomControl becomes a System.Windows.Data.Binding containing nothing but null values but the DataContext becomes an MyClass object (which Items is ...
0
votes
1answer
340 views
TemplateBinding DataContext in silverlight CustomControl
I have a rather interesting case with ComboBox control - CustomComboBox;
In the style of this ComboBox, Popup contains one custom control that requests a DataContext;
<ctrl:CustomGrid ...
0
votes
1answer
461 views
How to store entities context query object into generic list?
In my last question, i successfully to dump the data into combo box with solution from Leo but now, i want to get everything of specific user and store into generic list. i tried with this code but ...
3
votes
1answer
189 views
Silverlight DataContext Databinding behavior
I'll start off with a stripped-down/sanitized version of my code:
Model:
class DataObj : INotifyPropertyChanged {
// these actually call OnPropertyChanged, and have associated private variables
...
0
votes
1answer
96 views
DataContractSerializer and Constructors in Silverlight [duplicate]
Possible Duplicate:
How does WCF deserialization instantiate objects without calling a constructor?
If I use a DataContract attribute it doesn't call my constructor, but if I skip it then ...
1
vote
1answer
3k views
Silverlight: how to get data grid row in DataGrid by data context
Given a Silverlight data grid, how can you find the corresponding data grid row with a specific data context?
2
votes
1answer
59 views
wpf/silverlight binding help
Let's say i have a complex property called CarData and a simple bool AllowSubmit.
Xaml:
<Grid ..... DataContext={Binding CarData}>
...TextBoxes binded, working
....
last line in the grid:
...
0
votes
1answer
358 views
How to retrieve the data out of a Silverlight DataContext Object
I have a Silverlight application which is a collection of form fields and buttons.
I've created a method stub that handles a click event in the xaml.cs. When I inspect sender during debug, I can see ...
0
votes
1answer
383 views
Silverlight Combobox and Selected item problem
The title may sound simple and dumb, but allow me to explain.
I am using WCF RIA Services to bind a combobox to a list of say, countries. The control housing the entire control os already bound to a ...
1
vote
3answers
442 views
Accessing string value of Enum bound using EnumBoolConverter : IValueConverter
Firstly I hope the answer to my question is not already here. I have searched but can't seem to find what I need.
Secondly, I am still rather new to C# and Silverlight.
What I have is a group of ...
0
votes
1answer
245 views
Updating Custom Datacontext in Silverlight
So I dynamically and programatically set separate datacontexts for different screens in my SL app. I did this because there was data that needed to be displayed in one screen, coming from different ...
0
votes
1answer
1k views
in Silverlight DataGrid, CheckBox's DataContext sometimes null when Checked/Unchecked
I have a DataGrid. One of the columns is a template with a CheckBox in it. When the Checked or Unchecked events trigger, (it happens with both) the CheckBox's DataContext is sometimes null, which ...
1
vote
0answers
221 views
When clearing a root datacontext by removing from visual tree, binding further down the tree remains
[Silverlight]
I have a large visual object tree I'm removing from the visual tree (Grid.Children.Clear()), upon removal the DataContext of the root nulls out, but further down the tree a binding which ...
3
votes
1answer
421 views
Windows Phone - DependencyProperties
I'm trying to get a UserControl working in Windows Phone 7. I have a few properties which I'd like to bind to, yet they aren't populated regardless of whether I add them as DependencyProperties or ...
1
vote
1answer
356 views
Nested DataContext in XAML in Silverlight
I have a UserControl in Silverlight. This UserControl looks like this:
<TextBlock Text="{Binding Path=OrderDate}" />
<TextBlock Text="{Binding Path=ShipDate}" ...
2
votes
4answers
2k views
How to hide a control if the underlying DataContext is null?
I have an object in my view model that has a bunch of properties, some of them will occasionally be null. I don't want to just show some controls if these particular controls are null. How would I go ...
0
votes
1answer
309 views
Databinding in the same Control on 2 different DataContext
In Silverlight I've a page with some controls and a listbox.
I'm using MVVM and the dataContext of the listbox is defined like this. In my model I have a property ProductCommand and this ...
2
votes
1answer
707 views
Silverlight Behavior: DataContext of AssociatedObject changes
I've written an Interactivity Behavior (from Blend SDK) , which can be attached to a DataGrid, and does some magic with the DataGrid's columns based on the ViewModel in the DataContext of the ...
1
vote
2answers
933 views
Sharing context between view models
I am building my first silverlight application. This application has several forms that allow user to save Customers, Vendors, Staff etc. Each page has one parent usercontrol (with a corresponding ...
1
vote
2answers
477 views
Sharing DataContext to UserControl in a type safe way
I'm developing my first Silverlight 4 app and are struggling on how to to share my DataContext set on the top element (a Grid) in my MainPage.xaml into an underlying UserControl, in a type safe way. ...
0
votes
2answers
263 views
DataContext creation in which layer?
I am creating a new Silverlight app using RIA. I am using a Business layer and a data access layer, it looks something like this...
Silverlight->ASP.Net/RIA->C# BLL class library->C# DAL class ...
1
vote
1answer
632 views
combobox with different datacontext for ItemsSource and SelectedItem
So i have a combobox as the CellEditingTemplate of a datagrid and selected item is bound to the datacontext of that row as expected, but i need the combobox to be populated from a ObservableCollection ...
0
votes
1answer
502 views
Update data with RIA Services over SOAP
I have an SL Application which uses RIA and Domain services for data access. I have modified this to work on SOAP so any other applications can use the service.
On a Windows client I can query data ...
0
votes
1answer
201 views
How to implement commanding in silverlight
Simple case:
<usercontrol>
<Views:UserListView x:Name="settingsTreeView"/>
<Button DataContext="{Binding ElementName=settingsTreeView, Path=SelectedItem}"
...
1
vote
1answer
632 views
How to change data context and re-render single RadGridRow
After rendering full grid I need to change data context of selected Row since initially "simple" objects are filled as data source and when single item is selected (looking at ...
3
votes
4answers
791 views
How to prevent Silverlight RIA Entity getting attached to datacontext before i'm ready
I have a Silverlight 4 application for a simple 'TODO' list. The problem I'm having is that databinding is hooking up relationships on my TODO object, which causes the RIA data context to add it to ...
11
votes
2answers
5k views
Difference between ItemsSource and DataContext as pertains to ListBox
I am not quite grokking the difference between ItemsSource and DataContext. Can someone explain it and back it up with examples? When would I use one or the other.
I am reading the docs and it says ...
1
vote
4answers
3k views
Bbinding combobox within dataform to view model property outside dataform's context
I have two properties in my view model:
//Relationship has property ReasonForEndingId
private Relationship editRelationship;
public Relationship EditRelationship
{
get
{
return ...
1
vote
1answer
190 views
How to create databinding over two xaml files?
I am trying to come to a working understanding of how databinding works, but even after several tutorials I only have a basic understanding of how databinding works. Thus this question might seem ...
7
votes
4answers
4k views
Where should I set the DataContext - code behind or xaml?
(honestly I searched and read all the 'related questions' that seemed relevant - i do hope i didn't "miss" this question from elsewhere but here goes...)
There are two different ways (at least) to ...
1
vote
2answers
3k views
Silverlight nested RadGridView SelectedItem DataContext
I'm developing a Silverlight 4 app and am using the 2010 Q1 release 1 RadGridView. I'm developing this app using the MVVM pattern and trying to keep my codebehind to a minimum.
On my View I have a ...
3
votes
1answer
742 views
Is there anyway to stop automatic DataContext inheritance in Silverlight?
Is there anyway to stop automatic DataContext inheritance in Silverlight?
I Set my DataContext on my parent UserControl in code. As a result all the xaml bindings inside the UserControl try to bind ...
2
votes
4answers
1k views
DataContext, DataBinding and Element Binding in Silverlight
I'm having one hell of a time trying to get my databinding to work correctly. I have reason to believe that what I'm trying to accomplish can't be done, but we'll see what answers I get.
I've got a ...
3
votes
2answers
2k views
Set DataContext of a textbox to the current class in silverlight
i have a textbox in a UserControl,
i created a property in the UserControl,
i want to bind the textbox text property to the property created in the usercontrol.
The problem is that i dont know how ...
2
votes
1answer
642 views
Silverlight behavior based on update of view model property
I'd like to have a Silverlight behavior that is triggered by a change to a property in the view model for my page. I can't figure out how to do this, however.
So, I have a very simple view model:
...
0
votes
1answer
318 views
What is the best practice for committing changes using a LINQ2SQL datacontext in a Silverlight application using RIA?
I've got a Silverlight app using RIA services and LINQ2SQL and have objects in my Silverlight app.
I query all the records in a table (via a LINQ query, using a datacontext) in the Silverlight app ...
0
votes
1answer
213 views
StackPanel not updating
I am having an issue with a directly bound ObservableCollection not updating a StackPanel when new items are added. Any initial items show up correctly. Only items that are added later on fail to ...
1
vote
4answers
1k views
Binding ItemsSource to a “proxy” collection. How to get DataContext?
We've got a Silverlight application with several listboxes and comboboxes that display data sorted incorrectly, which I need to fix. Most of their ItemSource properties are set through XAML. Their ...
1
vote
3answers
231 views
Different data contexts in a SL3 form
I wrote a custom Silverlight 3 control that uses a class as its data context (MVVM pattern). I want to place this control on another control (form) through XAML. The child control exposes a Dependency ...
0
votes
1answer
335 views
Silverlight: Determine whether DataContext is inherited or not
At runtime in a generic fashion (i.e. iterating UIElements) can I determine if a given FrameWorkElement has a non-inherited DataContext property set? I want a list of elements where DataContext was ...
1
vote
1answer
1k views
Silverlight: Applying datacontext to an element within a style
I have defined a style in app.xaml. This style contains several text TextBlocks which I would like to controle as I apply the style to an object, in this case a UserPin.
How can I access these ...
2
votes
2answers
5k views
Silverlight - relative DataContext in XAML?
In Silverlight XAML, I think I've just realized that a DataContext declaration on a nested container is relative to the parent container's DataContext. Can you all please confirm.
If so, then let me ...
