I'm building a Silverlight 4 UserControl in Blend which has three VisualStates.
I would like to have the states change from the first to the second state after a delay of a few seconds, second to third after a few more seconds, third to first after another delay, and continue rotating like that.
Essentially, this is a very primitive ...
Hello,
I'm developing a Silverlight application where I want the master and its detail grid to share the same columns.
So, some of the common fields would be displayed in master grid and rest of the fields would be specific for each child/detail.
How can I do it?
Thanks in advance.
...
Hi,
I downloaded the Silverlight 4 SDK (not the Beta) from the following Microsoft site.
http://www.microsoft.com/downloads/details.aspx?familyid=55B44DA3-E5DE-4D2A-8EAF-1155CA6B3207&displaylang=en
However, when I try to run the file, it says "File is corrupt".
Has anyone else also faced this issue?
Is there any other site fro...
Hi, How can i detected the browser type in my silverlight application?
for example i want to know if my silverlight application is running on IE or Firefox Or GoogleChrome...
i'm using silverlight 4
and my programming language is c#
...
Hello everyone,
I am new to Silverlight and I got a small problem with effects in combination with polygons. I want to achieve that the rendering of the shader is only inside the edges instead of also outside the edges. As you see the brush is doing this, but not the output of the shader. Anybody knows a solution to fix this? Is there a...
I've been using the Silverlight version of #ziplib (SharpZipLib) but it seems seriously flawed because the DeflateOutputStream always produces 2 bytes (120, 156) for any input (hell of a compression algorithm ;) so I cannot use that one. What's more it seems like that latest release is almost 2 years old now.
Any recommendation for a fr...
Hi
Give Me Detail Explanation and Code For QueryString in silverlight.i.e i want to pass one xaml page values into another xaml page .
...
Hi,
I have a snippet of code that should remove a text file and its' parent directory:
if (isolatedStore.FileExists(logPath + "\\" + logFileName))
isolatedStore.DeleteFile(logPath + "\\" + logFileName;
if (isolatedStore.DirectoryExists(logPath))
isolatedStore.DeleteDirectory(logPath);
...where logPath + "\" + logFileName mig...
Hi,
I have a simple scenario where I'm displaying some products in the datagrid control and the details of a particular product is shown in DataForm.
Each of the products are of different type and I want to display the fields only related to the Product Type in the DataForm. e.g If User selects Product 1 from the grid, I want to populate...
Hello,
I have a xap file that contains an unreferenced assembly: b.dll.
This assembly was put in the xap file manually (by a post build step, in which I just add the dll to zip(xap) file).
Now at runtime I want to access b.dll and call CreateInstance on it.
This is where I am stuck. How can I get an Assembly instance for b.dll from th...
I'm trying to create a custom AccordionItem that can take the tag property value "Rank":
<local:MyAccItem Header="" Content="" Rank="" />
This isn't really working because my control simply contains a grid that contains the original Accordion item. I have tried manipulating the template and have created a Resource file with a modifie...
I have multiple text boxes on a silverlight page. How can I make one of them active so that I will not have to click it to be able to type into it.
...
hi, I am using silverlight Tab control.There are three TabItems. When I selectsecond tab item it tucked behind the first and last. Whereas it should be displayed in the foreground. How to achieve that ?
...
In Silverlight 4 has anyone tried to download a file using the WebClient (read or string method, does not matter) and save it to disk? (using File or FileStream class, again does not matter)
I have been trying to get this to work with no luck, for some reason the file downloads fine, while in memory the string length of it seems to matc...
Trying to use a DLL that returns a list of tasks in the W2k3 server's Task Scheduler. Works great when I use it in a C# console app on the server, and using it on my computer (ASP.NET Dev Server), but when doing the same thing through the Silverlight-WCF RIA on the W2k3 server, it just wouldn't go. Silverlight returned "Object reference...
Environment: VS2010, SL4, RIA Services
I have an SL4 UI that I developed against data objects that were instantiated from an XML file (so that I didn't have to worry about the back end of the app while I worked on the front end). In this UI, I have a data grid that shows properties for each object in the collection of data. I also ha...
I've been doing some research on finding an embedded database to be used with Silverlight/isolated storage. Everyone says SQLite will not work with Silverlight due to unmanaged code.
From my experience there is just a dll named System.Data.SQLite.DLL which I believe I either got from installed SQLite.NET or from the NHibernate build. ...
How do you set the width of a textbox to fill the container programmatically? For example in xaml if I have the following declaration for the textbox:
<TextBox Height="23" Name="TextBox1" VerticalAlignment="Top" Width="50" />
how can I set the width so that it fills the container in a button click handler?
...
New to Silverlight. I'm working on a chat application where new chat messages are added to the bottom of a list. I had a working version that used as StackPanel inside a ScrollViewer and then in some code behind used StackPanel.Children.Add().
I'm trying to convert this to a View-ViewModel approach, and I can't figure out how to bind ...
I am running into an issue with refreshing data on a page after doing an update through WCF RIA Services.
I have a ComboBox and a Button on a page. The user chooses an item from the ComboBox, and then clicks the Button. This does a soft delete of the item in the database(setting "Active" = false). However, I would like for it to be remo...