Xaml data binding





Wed, 01 Dec 2010 23:54:49 -0700

Visual Studio Data : WPF Data Binding: Creating a Master-Details ...

by Xaml data binding  @ Wed, 01 Dec 2010 23:54:49 -0700
Late last year we had released a Community Technology Preview (CTP) of VS2010. At that time I had written about some improvements to the data improvements for WPF. The Beta has many more and we will discuss. ... < CollectionViewSource x:Key="CustomersOrdersViewSource" Source="{Binding Path=Orders, Source={StaticResource CustomersViewSource__OMSEntities}}" />. But note that the so...

Tue, 30 Mar 2010 01:33:54 -0600

DevHawk - __clrtype__ Metaclasses Demo: Silverlight Databinding

by Xaml data binding  @ Tue, 30 Mar 2010 01:33:54 -0600
In the generated app.xaml file, I removed the default text box and replaced it with this XAML code that I stole nearly-verbatim from my blog post on data binding in WPF with IronPython. The only thing I changed was the binding path for ......

Sun, 20 Sep 2009 00:00:06 -0600

Manol Donev's blog > WPF: RadChart Layout Customization

by Xaml data binding  @ Sun, 20 Sep 2009 00:00:06 -0600
Today we would like to highlight one exciting feature that will find its way into the new RadChart control for WPF -- the control grants you the absolute freedom to compose its layout based on your business requirements and not ....Grid>. Note that with this approach you have a direct reference to the ChartArea instance (instead of using FindName(...) lookup) like this: private void ExampleControl_Loaded(object sender, RoutedEventArgs e)...

Sun, 13 Sep 2009 00:00:10 -0600

Jason Zander's WebLog : VS2010 Tutorial: Build a WPF App (Step 1)

by Xaml data binding  @ Sun, 13 Sep 2009 00:00:10 -0600
We want WPF to do the layout of the buttons and the label. To do this, create a bound to Grid.Row=”0”. The StackPanel by default flows items vertically so let's change the Orientation to “Horizontal”. ......

Sun, 06 Sep 2009 00:00:08 -0600

MediaElement and More with WPF - David's Blog

by Xaml data binding  @ Sun, 06 Sep 2009 00:00:08 -0600
Volume="{Binding ElementName=sliderVolume, Path=Value}">. . The first thing to notice here is that the LoadedBehavior is set to Manual. This is the mode that allows us to call Play and Stop on the MediaElement in code. ......

Sun, 30 Aug 2009 00:00:07 -0600

WPF XAML Data Binding Cheat Sheet

by Xaml data binding  @ Sun, 30 Aug 2009 00:00:07 -0600
One of the best things about WPF is the advanced data binding support, the Binding class that is used to create data bindings has many interesting and useful options. And I never remember the more advanced options when I’m writing XAML. ......

Sun, 23 Aug 2009 00:00:12 -0600

Visual Studio Data : WPF Data Binding: Creating a Master-Details ...

by Xaml data binding  @ Sun, 23 Aug 2009 00:00:12 -0600
First, if you look at the XAML that gets generated, under Windows.Resources you will find two CollectionViewSource entries: One for Customers and one for Orders. These serve as the components (like the BindingSource objects in ......

Sun, 16 Aug 2009 00:00:09 -0600

Explore .NET with Vikram Pendse: DataBinding in Blend 3 for Designers

by Xaml data binding  @ Sun, 16 Aug 2009 00:00:09 -0600
It will then analyze your XML and it will generate metadata [ Refer the Sample Data folder it creates, it creates on xaml and xsd file], It will show you the contents in form of Collection and properties, Also you can go ahead and ......

Sun, 09 Aug 2009 00:00:09 -0600

Enable Tooltips on XY Dataseries - C1 Community

by Xaml data binding  @ Sun, 09 Aug 2009 00:00:09 -0600
Is there a tutorial on how to enable tooltips on an xy dataseries so they display the values of a given point? Like in the key features of the wpf chart documentation? ... . To assign the template to the data series set the PointTooltipTemplate property to the following: . Since it is a standard data template, the complex label can be built, for example, ......

Sun, 02 Aug 2009 00:00:08 -0600

WPF/Silverlight Layouts

by Xaml data binding  @ Sun, 02 Aug 2009 00:00:08 -0600
UniformGrid provides a very basic grid layout: Each cell is the same size (hence uniform), and the locations of the items are determined simply by their order in the children collection. To use UniformGrid, we specify the number of ......