Xaml grid





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

Silverlight ModalDialog With Custom User Controls

by Xaml grid  @ Wed, 01 Dec 2010 23:54:52 -0700
Column="2" />Grid.Row="2"Grid.ColumnSpan="3" />Grid> // ModalDialog.xaml.cs using System; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; using System.Windows. ......

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

Taking advantage of data binding in Silverlight

by Xaml grid  @ Tue, 30 Mar 2010 01:33:55 -0600
In Page.xaml change our control declaration to. . 9. Great we have defined a class, declared an instance of it and bound the instance property to the property of our ......

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

WPF: the drag'n'drop data-binding with Visual Basic 2010 Beta 1 ...

by Xaml grid  @ Sun, 20 Sep 2009 00:00:07 -0600
In my previous post I introduced one of the new features available in Microsoft Visual Studio 2010, the drag'n'drop data- for WPF applications. In that article we saw how we can use this kind of technique versus DataSets and, ....< CollectionViewSource x:Key="CustomersOrdersViewSource" Source="{Binding Path=Orders, Source={StaticResource. CustomersViewSource__Northwi...

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

DataBinding Bug - TextBox change does not update binding : The ...

by Xaml grid  @ Sun, 13 Sep 2009 00:00:08 -0600
I have found that in a very specific situation, changing text in a TextBox does not update the underlying datasource when using data binding. If you set a property to either null or String.Empty twice in a row, then you enter a 1 character value in the text box, the binding ... XAML:

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

.Net Musings: INotifyPropertyChanged and WPF

by Xaml grid  @ Sun, 06 Sep 2009 00:00:12 -0600
Command="{Binding Path=UpdatePriceCommand}" CommandParameter="{Binding ElementName=ProductSelector, Path=SelectedItem}">. Clicking on the Button increases the price of the currently selected ......

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

davebouwman.com » Blog Archive » Pragmatic Choices: Bye Bye ...

by Xaml grid  @ Sun, 30 Aug 2009 00:00:07 -0600
I'm sure if I had a team of 3 developers, and we had 6 months to get up to speed on XAML, ADO.NET Data Services / RIA Services, Prism, Commanding, XAML Data Binding, and Silverlight Unit Testing, then this application would merely be ......

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

Important Silverlight Tutorials for Beginners

by Xaml grid  @ Sun, 23 Aug 2009 00:00:09 -0600
What are the different ways provided to do layout in SilverLight? Can you explain how Canvas layout actually works? How can we implement Grid Layout? How can we implement Stack Layout? What are the different steps involved in consuming ......

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

Visual Studio Data : Customize format of DateTime string in WPF...

by Xaml grid  @ Sun, 16 Aug 2009 00:00:08 -0600
Another simpler way is to insert a StringFormat property to the Text Binding and set it to only display the Date 1/1/2222: Text="{Binding Path=Birthday, StringFormat=d}". Similarly, if you set StringFormat to the “Order Date” and ......

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

Using Data Binding with Static Resources in WPF | UX and WPF ramblings

by Xaml grid  @ Sun, 09 Aug 2009 00:00:09 -0600
In this post, I show how to use resources for which you don't know in design time the key to use in xaml, by binding them to a view model....

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

Jeff Blankenburg | Blankenthoughts: Day # 18: Silverlight Effects

by Xaml grid  @ Sun, 02 Aug 2009 00:00:08 -0600
Next, we need to create a DataGrid that has 4 columns: Task Name; Design Hours; Implementation Hours; Quality Assurance Hours. Here is the XAML to put that together: 1: