I being passed a object from javascript as JSON and it's type in Silverlight is of type System.Windows.Browser.ScriptObject.
How do I get the JSON representation from the script object?
Cheers
AWC
...
Hello,
So i decide to to develop my asp.net site into Silverlight.
I today start to search articles about MVVM pattern which i want use in my Silverlight app, and i am confused :/ It's hart to me understand how works this pattern. I am find 3 frameworks which supports MVVM pattern in Silverlight - Caliburn, MVVM Light Toolkit and Goo...
Hello,
I have one very weird question.
There are 2 Silverlight Client
1. Admin
2. User
Now, I want a scenario wherein the Admin Silverlight can initiate a function call on the User Silverlight.
Pretty much a newbie with SL so wonder if that would be possible.
I'd appreciate any help.
Thanks
...
We are developing C#.NET web application, which MUST have possibility to connect to front-end user's scanner, webcam or sign-pad (http://www.signotec.com/) device and execute their actions. This should be embedded with browser.
AS far as I know it's possible with Java, AIR, Silverlight4 (it's still beta).
What do you prefer it's best ...
I learned how to get a ScrollViewer's scrollbars to display after scaling an element within in a ScrollViewer from this post: http://www.eightyeightpercentnerd.dreamhosters.com/?p=92
Now, I'm trying to get the scaled object (a canvas in this case) to center correctly within the ScrollViewer. I'm going to let images tell my story here (...
I have a Silverlight datagrid where two of the columns are comboboxes. One of the comboboxes is bound to an unchanging Dictionary and is displaying the list of Keys. For the other combobox, I want to populate it with a hardcoded list of strings based on the Value of the selected item in the first combobox.
A little more context - the Va...
I'm trying to extend the datagridcolumn a bit so I can make column widths percentage based, rather then absolute in silverlight. This way no matter what size the grid, the columns take up a specified percentage of the grid.
Anyway, this is my first step
public static class DataGridColumnBehaviors
{
public static readonly Dependenc...
In my Silverlight UI, I have a button that when clicked pops up a control with some filtering parameters. I would like this control to hide itself when you click outside of it. In other words, it should function in a manner similar to a combo box, but it's not a combo box (you don't select an item in it). Here's how I'm trying to capt...
Looking for the WPF equivalent of the following:
<controls:TabItem Foreground="Black" Header="{Binding Path=Home.Header}" Content="{Binding **Path=Home**, Mode=OneWay}" />
Home is:
public ViewModelBase Home
{
get
{
return this._homeViewModel;
}
}
Inside my ViewMod...
Windows Server 2003 (IIS 6)
Visual Studio 2008
.NET FrameWork 3.5 SP1
I am a .NET developer for a living and I have over 40 hours in the problem
Project type = "Silverlight Navigation Application", "APS.NET Web Site"
(when I tried it as "ASP.NET Web Application Project" I could not copy it to the production web site - well I could copy ...
I am testing my application on a number of machines. It is fine on every machine except 1.
I'm having problems with one XP machine where in internet explorer, chrome and firefox the Silverlight plugin crashes on EVERY page with Silverlight.
Pages that used to work fine with silverlight 3 crash instantly - including my app and the Silve...
I'm supposed to develop animations/simulations to illustrate Computer Network concepts (Algorithms etc..).Some thing like this: http://www3.rad.com/networks/2004/sliding_window/detect.html . After done with this, I'm also supposed to develop similar animations for Operating System Concepts too. Its part of an educational program.
I'm un...
Is it possible to develop silverlight 4 applications in visual studio 2010 RC?
The official position of MS is we need to wait for silverlight's big update. I think it update will be on MIX10. But, what about any possibility to develop SL4 in VS2010RC now?
...
Hello guys!
I have to grab audio from a microphone and write it to stream 'on fly'. The destination machine will read this data and play it. It's all will be Silverlight applications. So can i use Naudio library or FMOD for my purpose?
Thx in advance!
...
I have a databound ListBox with an ItemTemplate, following this example:
<ListBox ItemsSource="{Binding Path=FlightHeadings}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Path=Identifier}" />
<TextBlock Text="{Binding Path=Name}"/>
</StackPanel>
</DataTemplate>
</L...
Hello,
Im currently working on Silverlight app, which resides on our ASP.NET webpage.
I want to populate listbox with names of (audio wav) files that are on remote linux machine.
I also want to be able to play those files using MediaElement.
Im wondering if it is possible to get stream of remote samba enabled linux server.
thx, for ...
Hello all,
I am building a prototype application in Silverlight 4 Beta and I am using the Out-of-Browser (OOB) functionality. I need the OOB functionality to be able to access the local file system, and I would like to avoid writing an ActiveX component or Java applet.
I have a requirement to be able to launch the OOB experience from t...
How do you remove the focus rectangle from a silverlight ListBox? I have this code:
<ListBox x:Name="MyListBox" >
<ListBox.ItemTemplate>
<DataTemplate>
<Grid >
...snipped...
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemContainerStyle>
<Style Targe...
Hi, and sorry for another Cross Domain question.
I have been fighting with this all day now and am at the point of boiling over.
I have a Silverlight Application Project (SLApp1), a Web project for hosting the Silverlight (SLApp1.Web) and the WCF Project (SLWcfService).
Now I am building everything together and all the projects are in...
string xmlText= "
<Person>
<Name>abc</Name>
<Age>22</Age>
</person>";
i want the values abc and 22
m using silverlight 4 and XmlTextReader is not available
Thanks in advance
...