support for Windows Phone 7.1 Beta 2 (refresh) “Mango”;
added new property “IgnoredTypes” for excluding particular control types from the manipulations (thanks to Richie for the suggestions, feedback and code samples);
the “Manipulation Processor” and “Inertia Processor” are now exposed by the behavior in order to enable personalized manipulations and gestures;
new properties: CenterX, CenterY, Rotation, Scale permit to support custom gestures like “DoupleTap” zoom;
Silverlight 4 and Windows Phone 7.1 samples updated with a simple ”DoubleTap” zoom example using the new exposed properties.
The source code and samples are available for download here.
The Validation Application Block supports the following scenarios:
Executing validation rules across multiple tiers and gathering results.
Annotating your business entities with validation attributes.
Ensuring validation attributes compatibility with WCF RIA Services.
Defining validation rules in configuration.
Validating conditionally using rule sets.
Implementing self-validation.
Defining validation attributes in metadata. Silverlight doesn’t support the MetadataTypeAttribute. In the .NET Framework, this attribute is used to define metadata classes with validation attributes for your generated business entities. The Validation Application Block provides an implementation of the MetadataTypeAttribute for Silverlight.
Supporting IDataErrorInfo.
Logging Application Block
Allows you to decouple your logging functionality from your application code. The Logging Application Block routes log entries to various out-of-the-box or custom destinations (locally or through a web service), it supports runtime changes to, for example, turn existing logging up and down or change logging destinations. Batch logging is supported. The block is shipped with an implementation of a WCF Remote logging service that integrates with the desktop version of the Logging block. Additionally, tracing feature allows you to correlate log entries to a specific activity/workunit scope.
Caching Application Block
A brand new implementation of the Caching application block, which is mimicking the System.Runtime.Caching API from .NET with support for in-memory caching and persistent caching (via isolated storage). It has support for expiration and scavenging policies as well notification of cache purging.
Exception Handling Application Block
A port of the desktop version of the Exception Handling Application Block, which allows you to handle exceptions that might occur in any layer of your application in a consistent manner.
Interception & Policy Injection Application Block
Update to Unity container for Silverlight with support for type and instance interception.
Configuration support
The Silverlight Integration Pack offers flexible configuration options, including:
XAML-based configuration support
Asynchronous configuration loading
Interactive configuration console supporting profiles (desktop vs. Silverlight)
Translation tool for XAML config (needed to convert conventional XML configuration files) available as a config tool wizard, an MS Build task, or a standalone command-line tool
Programmatic configuration support via a fluent interface or attributes
Reference Implementation
New Developer’s Guide and an accompanying Reference Implementation to illustrate the typical challenges when building a Silverlight LOB application.StockTrader V2 Reference Implementation (RI) (via a separate download)
More resources, documentation and download links are available in the public announcement.
Version 2 of the “Native Extensions For Microsoft Silverlight” is now available for download here.
These libraries contains several COM wrappers and samples for:
Touch APIs – Manipulation, Gestures and Inertia processing;
Message Interception – Allow applications to intercept Window messages sent to the containing window;
Sensor API - Provide full access to the Windows 7 Sensor API;
Local Encoding – Allow applications to capture webcam audio/video input into a local H.264/AAC-LC encoded media file. Also allow capturing of application user interface activity as video with audio;
Taskbar Access - Allow applications to integrate various Windows 7 taskbar features like taskbar button overlays, jump lists, taskbar button progress notifications, etc;
Speech API - Allow applications to use Windows 7 Speech-to-Text and Text-to-Speech capabilities;
Portable Devices - Allow applications to enumerate content on connected devices like music players, digital cameras etc.;
Windows 7 Notification Area (System Tray) support;
In these days I’m receiving several questions in the Multi-Touch Behaviors forums about enabling Multi-Touch manipulations in Windows Phone applications composed by more than one page.
Today I’ve modified the available sample inserting an additional page containing an image enabled for translation, rotation, zoom and inertia via the usual “MultiTouchBehavior“:
Starting from release 0.6.1 it’s now possible to use the Behavior in different pages of the application, in this way enabling multi-touch in different elements of a Windows Phone 7 application:
As usually the sample code is available for download on http://multitouch.codeplex.com, check out the Visual Studio solution “SilverlightWP7MultiTouch.sln” which contains all necessary libraries.