|
|
-
|
|
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......
|
|
-
|
|
Just learned from kunal's blog
In Silverlight 5, its not required to write any extra code by type and search the items in ComboBox and ListBox Items.
Thank You......
|
|
-
|
|
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 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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
Instead of setting the initial Silverlight content by using a discrete file or package that is referenced by a URI, you can specify an area of inline HTML content that contains your XAML.
Inline XAML is a concept that is only usable with the JavaScr......
|
|