Home » Blog

rounded header

Archive for July, 2008

Visit Mindscape @ the Microsoft Worldwide Partner Conference

tag icon Tagged as LightSpeed

2008 Microsoft Worldwide Partner Conference

Next week we will be exhibiting at the 2008 Microsoft Worldwide Partner Conference in Houston, Texas.

We will be exhibiting at booth 120 along with several other New Zealand software companies (ActionThis, ActiveDocs, IPFX and Voola). It is great to get the chance to meet customers face to face and introduce others the benefits of our products as well as identify partner and reseller opportunities.

If you are attending and would like to meet then you can either drop by booth 120 or email me at jd@mindscape.co.nz.

The event should be a lot of fun and we would like to thank NZTE and Microsoft for sponsoring the New Zealand stand this year.

See you there!

Tabbing within a WPF Property Grid editor

Here’s a quick tip if you’re creating editors for the WPF Property Grid that contain more than one control. If you want to support tab key navigation between the controls, add the KeyboardNavigation.TabNavigation attached property to the container of the controls, and set it to Local. For example:

<DataTemplate x:Key="PhoneNumberEditor">
  <StackPanel Orientation="Horizontal"
              KeyboardNavigation.TabNavigation="Local">
    <TextBlock>+</TextBlock>
    <ms:TextBox Text="{Binding Path=CountryCode, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0" MinWidth="10" />
    <TextBlock> (</TextBlock>
    <ms:TextBox Text="{Binding Path=RegionCode, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0" MinWidth="10" />
    <TextBlock>) </TextBlock>
    <ms:TextBox Text="{Binding Path=Number, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0" MinWidth="10" />
  </StackPanel>
</DataTemplate>

Notice the additional attribute on the StackPanel element.

Data Products Visual Controls Community Store
LightSpeed ORM
NHibernate Designer
SimpleDB Tools
SharePoint Tools
WPF Elements
WPF Diagrams
Silverlight Elements
Forums
Blog
Register
Login
Subscribe to newsletter
Buy Now
My Account
Volume Discounts
Purchase Orders
Contact Us