Briton Solutions Ltd

Who are we?

Briton Solutions Ltd offers software design, development, IT contracting and consultancy across all industry sectors, with experience in areas such as defence, finance, property and education.

What do we do?

Specialising in the Microsoft .NET Framework we pride ourselves on our success in developing desktop and web based applications, and advising our clients on how to bridge that gap.

We can take your applications to the web providing increased productivity and reduced ongoing costs.

The use of AJAX technologies can provide you with the responsiveness and feel of the desktop in your web enabled applications.

The extras

As well as development, we provide business analysis and project management services.

We can advise you on your web site design, search engine optimisation strategy (SEO), assess usability and provide guidance on best practice in design and implementation.

And what's more, we can communicate this to you in a language you can understand.

What's new?

Microsoft Professional Certification

Briton Solutions Ltd's lead developer and architect, Christian Bridge-Harrington, has achieved Microsoft Certified Professional Developer status.

Microsoft Certified Professional Developer Logo

Featured Article

Formatting text directly in XAML

You can format text strings directly in the XAML code of a WPF application. For example, you can use standard .NET formatting such as currency and date: <TextBlock Text="{Binding Amount, StringFormat={}{0:C}}"/> <TextBlock Text="{Binding Date, StringFormat={}{0:dd/MM/yyyy}}"/> The empty {} after the StringFormat= escapes the text before the formatting string. You can add text in front of the formatting string too, e.g. StringFormat=Amount: [...]