Archive for July, 2008
Visit Mindscape @ the Microsoft Worldwide Partner Conference
Tagged as LightSpeedNext 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
Tagged as WPF Property GridHere’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.
Categories
BrainDump (1)
Community Code (4)
Events (16)
F# (14)
General (53)
Lab Samples (2)
LightSpeed (268)
MegaPack (8)
News (71)
NHibernate Designer (26)
Nightly news (52)
Phone Elements (24)
Products (87)
Projects (5)
Screencast (6)
SharePoint (3)
Silverlight (14)
Silverlight Elements (66)
SimpleDB Management Tools (20)
Visual Studio (9)
VS File Explorer (7)
Web Workbench (39)
WPF (44)
WPF Diagrams (57)
WPF Elements (110)
WPF Property Grid (32)




Posted by John-Daniel Trask on 3 July 2008


