DotNetShoutout - Stories tagged with DataBinding
2
Shouts

what are the different types of DataBinding and how to validate Data in SilverLight?

published 507 days, 18 hours, 55 minutes ago posted by dotnetfundadotnetfunda 508 days, 4 hours, 46 minutes ago
Monday, January 02, 2012 7:37:30 PM GMT Monday, January 02, 2012 9:45:48 AM GMT
In this article, we are going to learn about Different types of Data Binding Techniques in Silverlight and how to validate Data in SilverLight. (more)
category: Metro | clicked: 11 | 1 comment | | source: www.dotnetfunda.com
tags: DataBinding
5
Shouts

Databinding and Displaying XML Data for Aspnet Developers

published 810 days, 17 hours, 17 minutes ago posted by taanu51taanu51 811 days, 3 hours, 41 minutes ago
Saturday, March 05, 2011 9:15:18 PM GMT Saturday, March 05, 2011 10:51:24 AM GMT
Hi friends,In this article i would like to discuss the topic regarding XML, we all know that, By xml we can create ,retrieve,bind the Database for aspnet Applications. Create a XML file : Creating an XML file in Visual Studio 2005 is as simple as picking the XML File option from the Add New Item window, which gives a standard editor like Databinding and Displaying XML Data: Manually Binding to XML Files If we are not using an XmlDataSource control, and are using the DataSource prope... (more)
category: Web Dev | clicked: 1 | comment | | source: taanu51.blogspot.com
tags: DataBinding, ASPNET, XML
2
Shouts

Tutorial on Silverlight 4 databinding in code-behind, custom user controls, etc.

published 812 days, 23 hours, 33 minutes ago posted by http://timdams.wordpress.com/http://timdams.wordpress.com/ 813 days, 5 hours, 9 minutes ago
Thursday, March 03, 2011 2:59:14 PM GMT Thursday, March 03, 2011 9:23:03 AM GMT
This small tutorial was written to show the students the following aspects of Silverlight:Writing a class that can be used for databindingPerform data-binding through code instead of XAMLCreating a custom user controlWriting simple data converters Suppose we are creating a Silverlight game in which each player is represented as a pawn. However, the player class itself is somewhere deep inside the game-engine and we would like the pawn user control to be only loosely coupled to this player ... (more)
category: Metro | clicked: 21 | 1 comment | | source: timdams.wordpress.com
tags: Silverlight, DataBinding, code-behind
2
Shouts

Adding buttons to databound listbox items in WPF

published 812 days, 23 hours, 33 minutes ago posted by http://timdams.wordpress.com/http://timdams.wordpress.com/ 813 days, 5 hours, 10 minutes ago
Thursday, March 03, 2011 2:59:14 PM GMT Thursday, March 03, 2011 9:21:57 AM GMT
Introduction In this tutorial I will demonstrate how to create a listbox in WPF which is databound to a collection, we then would like to add a button to each item in the listbox. Clicking this button will button will delete that item from the collection. Making an ObservableCollection We create a small class which represents a User with a Name and Age: public classUser { public string Name { get; set; } public int Age { get; set; } } In the code-behind of our MainWindow we the create a new ... (more)
category: Metro | clicked: 14 | comment | | source: timdams.wordpress.com
tags: DataBinding
2
Shouts

Using Linq to filter a databound listbox in WPF/Silverlight « Timdams's Blog

published 812 days, 23 hours, 33 minutes ago posted by http://timdams.wordpress.com/http://timdams.wordpress.com/ 813 days, 5 hours, 13 minutes ago
Thursday, March 03, 2011 2:59:14 PM GMT Thursday, March 03, 2011 9:18:47 AM GMT
In this short tutorial I show how to use Linq in order to filter the items shown in a listbox, which in turn is databound to an ObservableCollection. Suppose we use the listbox created in the previous tutorial where we show the age and name of each user in the collection. All our databinding code-remains the same as before. What we have to add is a new collection in between our original source and the listbox. The in between collection is our Linq-query result. Each time we wish to change our filter, we... (more)
category: Metro | clicked: 11 | comment | | source: timdams.wordpress.com
tags: DataBinding, Linq, Silverlight 2
3
Shouts

ListBoxes with DataBound Images in WPF

posted by ioannisioannis 862 days, 19 hours, 7 minutes ago
Wednesday, January 12, 2011 7:24:47 PM GMT
In this post, we see how we can add a DataBound image in the DataTemplate of a WPF ListBox. We experiment with three different approaches of achieving that and discuss on which one to use depending on the situation. In all cases, the image files are embedded within the application as “Resource” files. Later in this post, we will see what needs to be changed in order to support having the image files in a folder outside of the application Assembly. (more)
category: How To | clicked: 0 | comment | | source: www.progware.org
tags: DataBinding, Images, WPF
5
Shouts

DataBinding JS Objects Into HTML Forms With jquery-datalink and jquery-tmpl - Windows Live

published 955 days, 23 hours, 34 minutes ago posted by joel_holderjoel_holder 956 days, 12 hours, 57 minutes ago
Monday, October 11, 2010 2:57:59 PM GMT Monday, October 11, 2010 1:34:48 AM GMT
DataBinding JS Objects Into HTML Forms With jquery-datalink and jquery-tmpl Today finally the official JQuery templating, data-linking, and globalization plugins are here. As expected the new plugins are very simple to use and still feature rich. I’ll show you a little bit of the goodness you can quickly compose using these features together.  Here’s an example showing how a company object and a form repr... (more)
category: Web Dev | clicked: 0 | comment | | source: uberpwn.spaces.live.com
tags: DataBinding, JavaScript, ASP .NET MVC, jQuery
5
Shouts

Simplifying (View Model-) Data Binding Using Expression-Trees « winSharp's Blog

published 973 days, 19 hours, 43 minutes ago posted by winSharp93winSharp93 975 days, 23 hours, 24 minutes ago
Thursday, September 23, 2010 6:48:59 PM GMT Tuesday, September 21, 2010 3:08:19 PM GMT
Want to get rid of messy “PropertyChanged”-subscriptions and too many OnPropertyChanged(“…”) to manage value relations? Then DataBinder is what you’re looking for! (more)
category: How To | clicked: 5 | comment | | source: winsharp93.wordpress.com
tags: Expression Tree, DataBinding, WPF, INotifyPropertyChanged, MVVM, lambda expressions
5
Shouts

Sample Data in the WPF and Silverlight Designer - WPF & Silverlight Designer - Site Home - MSDN Blogs

published 1057 days, 1 hour, 25 minutes ago posted by faisalhossainfaisalhossain 1058 days, 13 hours, 10 minutes ago
Friday, July 02, 2010 1:07:30 PM GMT Thursday, July 01, 2010 1:22:17 AM GMT
Developers using a visual Designer use sample data to light up their UI at design-time; to cause the Designer to render like it will at run-time. This time saving feature is especially important when designing DataTemplates or adjusting the layout of a DataGrid since the developer will not have to actually run the application to see what it will render like with... (more)
category: Smart Client | clicked: 0 | comment | | source: blogs.msdn.com
tags: Silverlight, DataBinding, WPF