|
|
-
|
|
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...
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
Today after installing silverlight. I tried to create sample project in silvelight but when i create project it’s give following error
“Object reference not set an instance of an object error”
Searching in internet, I found a workaround.
[code]
de......
|
|
-
|
|
There is no way to specify the default file name that will appear in the SaveFileDialog box in Silverlight.
This is a known issue since Silverlight 3.0. Below was the Microsoft's response on the questions in the forums:
"We've not exposed the "Def......
|
|