Archive for 'Silverlight'
Silverlight 2 Beta 2
Published on June 3rd, 2008.
Beta 2 is coming this week! Pete Brown wrote a short overview of what will this beta contain. Here it is.
- Cross-domain changes to Sockets
- WCF Duplex Communications
- TextWrapping in textbox
- TabControl
- Updates to Improve WPF Compatibility
Along with Silverlight 2 Beta 2, you’ll find a new preview of Expression Blend 2.5 and a new version of Deep Zoom Composer.
Filled under News, Silverlight. No Comments.
Modifying the ListBox Control in Silverlight 2.0
Published on March 25th, 2008.
I am going to show you how you can modify the standard ListBox control used in Silverlight 2.0. Many people want to change the default view of this control but they can’t remove the line between the items. If you download the code of the Silverlight control from the official site of Microsoft you will see that after every item there is a line. In this example I will show you how you can remove this line.
Let’s create e new Silverlight 2.0 application and place a ListBox in it.
<listbox> </listbox><listbox .Items> <listboxitem Content="I am the first item in the collection" /> <listboxitem Content="I am the second item in the collection" /> </listbox>
Filled under Silverlight. 2 Comments.
Silverlight 2.0 beta 1 Available
Published on March 7th, 2008.
In MIX Conference 2008 Microsoft presented Silverlight 2.0 beta 1. Here is a list of new features in this release:
- WPF UI Framework
Silverlight 2 includes a rich WPF-based UI framework that makes building rich Web applications much easier. In includes a powerful graphics and animation engine, as well as rich support for higher-level UI capabilities like controls, layout management, data-binding, styles, and template skinning. The WPF UI Framework in Silverlight is a compatible subset of the WPF UI Framework features in the full .NET Framework, and enables developers to re-use skills, controls, code and content to build both rich cross browser web applications, as well as rich desktop Windows applications. - Rich Controls
Silverlight 2 includes a rich set of built-in controls that developers and designers can use to quickly build applications. This upcoming Beta1 release includes core form controls (TextBox, CheckBox, RadioButton, etc), built-in layout management panels (StackPanel, Grid, Panel, etc), common functionality controls (Slider, ScrollViewer, Calendar, DatePicker, etc), and data manipulation controls (DataGrid, ListBox, etc). The built-in controls support a rich control templating model, which enables developers and designers to collaborate together to build highly polished solutions. - Rich Networking Support
Silverlight 2 includes rich networking support. It includes out of the box support for calling REST, WS*/SOAP, POX, RSS, and standard HTTP services. It supports cross domain network access (enabling Silverlight clients to directly access resources and data from resources on the web). Beta1 also includes built-in sockets networking support. - Rich Base Class Library
Silverlight 2 includes a rich .NET base class library of functionality (collections, IO, generics, threading, globalization, XML, local storage, etc). It includes rich APIs that enable HTML DOM/JavaScript integration with .NET code. It also includes LINQ and LINQ to XML library support (enabling easy transformation and querying of data), as well as local data caching and storage support. The .NET APIs in Silverlight are a compatible subset of the full .NET Framework.
The SDK for Silverlight 2.0 beta 1 is already available at its website.
Filled under News, Silverlight. 1 Comment.