• Products
  • Download
  • Purchase
  • Support
  • Company
Actipro Software company logo
Twitter Follow Actipro RSS Subscribe (RSS Feed)

The Actipro Blog

Tag Cloud

  • blog
  • docking
  • editors
  • intelliprompt
  • micro charts
  • navigation
  • propertygrid
  • ribbon
  • shared library
  • silverlight
  • syntaxeditor
  • themes
  • views
  • web site
  • winforms
  • winrt
  • wpf

Latest Twitter News

May 14, 2012 at 2:50 PM
IntelliPrompt code snippet features have been added to our VS-like code editor control for #WPF and #Silverlight. http://t.co/1IchOJrr

May 10, 2012 at 9:40 PM
Our new Micro Charts control products for #WPF and #Silverlight are out now. Come build some dashboards with them! http://t.co/EEERvff0

May 7, 2012 at 6:47 AM
Today we look at bar charts, for our upcoming #WPF, #Silverlight, and #WinRT Micro Charts product. http://t.co/gxHuPS6B

May 4, 2012 at 6:25 AM
See a gallery of micro area charts in our upcoming release for #WPF, #Silverlight, and #WinRT. http://t.co/qDXGwW8B

May 3, 2012 at 6:32 AM
See a variety of line charts that are easy to make with our upcoming #WPF, #Silverlight, #WinRT Micro Charts product. http://t.co/mbkX6tJd

Twitter Follow us on Twitter

Month List

  • 2012
    • May (9)
    • April (6)
    • March (11)
    • February (11)
    • January (2)
  • 2011
    • December (2)
    • November (7)
    • October (2)
    • September (1)
    • August (5)
    • July (3)
    • June (6)
    • May (5)
    • April (8)
    • March (4)
    • February (5)
    • January (9)
  • 2010
    • December (9)
    • November (10)
    • October (4)
    • September (8)
    • August (12)
    • July (9)
    • June (7)
    • May (6)
    • April (7)
    • March (6)
    • February (6)
    • January (4)
  • 2009
    • December (2)
    • November (2)
    • October (12)
    • September (3)
    • August (11)
    • July (10)
    • June (6)
    • May (3)
    • April (7)
    • March (6)
    • February (8)
    • January (10)
  • 2008
    • December (10)
    • November (2)
    • October (3)
    • September (5)
    • August (5)
    • July (8)
    • June (4)
    • May (4)
    • April (10)
    • March (8)
    • February (1)
    • January (2)

Category List

  • RSS feed for ActiproActipro (321)
  • RSS feed for Blog SummaryBlog Summary (15)
  • RSS feed for GeneralGeneral (43)
  • RSS feed for In developmentIn development (164)
  • RSS feed for New featuresNew features (155)
  • RSS feed for New productNew product (38)
  • RSS feed for PromotionPromotion (2)
  • RSS feed for SilverlightSilverlight (90)
  • RSS feed for Tips and tricksTips and tricks (4)
  • RSS feed for Visual Studio 2008Visual Studio 2008 (2)
  • RSS feed for Windows FormsWindows Forms (22)
  • RSS feed for Windows VistaWindows Vista (10)
  • RSS feed for WinRTWinRT (9)
  • RSS feed for WPFWPF (257)
  • RSS feed for XAMLXAML (23)

About Us

Actipro Software is a leading provider of .NET user interface controls for the WPF, Silverlight, and WinForms frameworks, and is most well-known for their SyntaxEditor syntax-highlighting code editor control.

Please take some time to learn more about us and our product offerings.

Editors for WPF - Beta testing signup starting

March 3, 2009 at 7:25 PM
by Bill Henning (Actipro)

We are close to releasing a Beta version of our Editors for WPF product, and we are looking for beta testers.  Editors for WPF is a suite of controls that can be used to collect, restrict, and validate user input.

How to apply for beta testing

If you are a WPF Studio customer and would like to apply to be an beta tester, please e-mail us with your name, e-mail address, and the organization name under which you own WPF Studio licenses (same as your WPF Studio license’s Licensee).  Only existing WPF Studio customers may apply at this time.

As usual, one requirement of being an beta tester is that you must provide feedback on the product.  If you don't think you'll have the time to do so, then please don't apply.

Support for drop-downs in our parts-based editor (e.g. calendars, lists, etc) is missing from the beta, but is planned for later betas and/or the final release.

Type-specific parts-based editors

The beta will include parts-based editors for DateTime, Double, Guid, Int32, Int32Rect, Point, Rect, Size, and Vector (from System.Windows). We plan to include parts-based editors for a few other types, including Duration and TimeSpan.

We have previously discussed the parts-based editor in this blog post, but would like to walk through a more complete example. The following wizard uses the DateTime parts-based editor for the birthday field.

wizard

Initially the value of the birthday is null, therefore the watermark is shown. The watermark can be fully customized using a DataTemplate, but by default shows the specified text.

BirthdayEntry1

To enter a birthday, you can either click the CheckBox or elsewhere in the control. If we click in the control, then we can see the various parts and begin entry.

BirthdayEntry2

The focus is automatically moved to the first part, so the user can begin entering the birthday. In order to enter the month, the user can type the month name or use the up/down arrow keys. In the image below, the letter 'A' was typed once followed by the Tab key.

When the focus is moved out of the part, it's changes are committed. The remaining parts are automatically initialized based on an "initial value" property. The initial value can be configured manually, or can be automatically updated based on the last non-null value (which allows the value to be retained if nullified). In this case, the initial value uses the default value of DateTime.Today.

BirthdayEntry3

With the focus in the day part, we can type in a valid day. Most of the parts leverage the MaskedTextBox to restrict input, and in this case only one or two digits are allowed. Additionally, the parts can further restrict the user input so that only valid dates can be entered. In this case, the current month of April the day would be restricted to 1 to 30. Assuming we enter 14 and press the tab key, the day value will be committed and focus will move to the year.

BirthdayEntry4

Finally, we can enter the year using 1 to 4 digits. When using 1 or 2 digits, then it is assumed to be a two digit year and will therefore convert to a 4 digit year. The editors use the current system configuration to determine the cut off values. In this example, we typed 75 then pressed the Tab key.

BirthdayEntry5

The value of 75 was converted to 1975, because the two digit years are assumed to be between 1930 and 2029.

DateTimeSettings

Summary

The parts-editors provide a more natural and intuitive way to collect user input. By leveraging the MaskedTextBox and custom validation, the user input is guaranteed to be in the correct format. You can also build a parts-based editor for you own custom types using the framework provided.

We'd love to get your feedback, so please sign up for the beta.

Tags: wpf, editors
Filed under: Actipro, In development, WPF
Submit to DotNetKicks...
Permalink | Comments (0)

Related posts

Editors for WPF beta testing startedYesterday we started the closed beta testing for our Editors for WPF product.  If you are a WPF...PropertyGrid for WPF beta testing starts this weekThe time has finally arrived, we plan on starting beta testing of our PropertyGrid for WPF control t...Actipro SyntaxEditor for WPF and Editors for WPF are released SyntaxEditor for WPF with a custom theme loaded Yesterday evening we published WP...
Comments are closed
Copyright © 1999-2012 Actipro Software LLC. All rights reserved.
Home Actipro Software | Products | Download | Contact Us