|
|
-
|
|
Today I just creating new project on my machine using Visual stidio 2010 with silverlight 4.0 after creating project i got **NullReference exception in xaml designer error**. I thought something is wrong when creating y=this project so delete and crea...
|
|
-
|
|
While working with Silverlight application,I can’t able to debug application through debugger using aspnet_wp.exe attaché process. Attaching debugger to aspnet_wp process will perfectly works with asp.net application. But It will not work with silverlig......
|
|
-
|
|
Today I just learn from kunal’s blog how to close browser window in silverlight application for security purpose.
invoke() method is use to close browser window.
e.g
[code]
System.Windows.Browser.HtmlPage.Window.Invoke("close");
[/code]......
|
|
-
|
|
Just read "Silverlight is Dead, Long Live XAML" article of Stephen Forte - Chief Strategy Officer at Telerik.
Microsoft is making XAML part of the core operating system (Windows 8)
It means that any XAML based application (either in WPF or Silverlig......
|
|
-
|
|
Silverlight 5 has introduced the concept of a click count.
Rather than create dedicated double, triple, or septuple click events, you can simply count the number of clicks using the ClickCount property of the MouseButtonEventArgs class.
This work......
|
|
-
|
|
If we have a lot of items in combo box/list box, its difficult to find and select that item. Now silverlight 5 provides type ahead support, When user selects some text, it automatically scrolls to items that starts with typed text.
[code]
<ListBo......
|
|
-
|
|
Until Silverlight4, while saving a file through SaveFileDialog, you can't specify default file name. On opening save file dialog, user has the additional task of entering filename. Now in Silverlight5, you can specify default file name.
[code]
S......
|
|
-
|
|
Silverlight applications running on the same PC can talk to one another without using Web Services, etc !!!
There are two functions in namespace "System.Windows.Messaging" to send and recive the messages.
To Receive
[code]var messageReceiver = ne......
|
|
-
|
|
In html pages we generally use % to define the width of a control to make sure it cover the available space or the fraction of space.
In Silverlight we can use “Auto” so that contents can spread in the full screen. for e.g.
Height="Auto" in RowDefi......
|
|
-
|
|
New feature in Silverlight 5. It is already present in Silverlight 5 Beta.
Style data binding allows you to use data-binding expressions to assign values to style setters.
It makes it easier than ever to include dynamic theming support in your Si......
|
|