silverlight-4.0

Content blured in Silverlight4 after making a rotation and a scale

Hy, I am making a rotation of 180 degree and after that a scale of -1 on X axis. This is applied to the main grid of the user control. In this grid i have a button and a stack panel with textBox. The problem is that after the animation is done the button and the textBox become blurred. If someone can help, i wait an answer. Thanks. ...

How to communicate to a client side application with silverlight.

I'm currently developing a silverlight application with prism. From this application I need to be able to send a command or keystrokes to a client-side application. What is the best way to accomplish this? Things I'm considering: Javascript can use an ActiveX object to use DDE. (Limits to IE only) Javascript can interact with a java a...

How can I go to specific URL programmatically in Silverlight?

How can I go to specific URL programmatically in Silverlight? ...

Silverlight Webbrowser: Source.AbsoluteUri stays at initial setting even after a hyper-click

Using Silver 4, I have a webbrowser control that I set to a web site thru code: e.g. webBrowser.Navigate("http://stackoverflow.com/questions/ask"); This brings up a web page just fine. It works fine also when I click on a hyperlink and go to another page. I was expecting that I could find the URL of the new page thru the LoadComplete...

dotnetopenauth and Silverlight4

Hello, Do you know a tutorial with dotnetopenauth and SL4 ? thx ...

Getting user profile data in Silverlight 4

Hi All, I am fairly new to Silverlight and RIA services, and I am trying to build a small project to understand it. So basically I created a Business Application, and I have the normal Login screen where I can add a user. That is fine and I can add a user and get him into the aspnet_Users table. Now I have created some extra fields, ...

How to create a user control that includes a dataform in Silverlight 4?

I created a custom UserControl named EditUserInfo, that includes a DataForm control. In the UserControl I created a Dependency Property of type UserInformation class named CurrentItem. The MainPage contains this user control, and in it's Loaded event I set UserControl's CurrentItem property to a newly created UserInformation object. Th...

Localizing dates and times automatically in Silverlight

This is more of a question about best pattern and practice than asking about any one particular method. We have app that is heavily reliant on dates and times and is hosted in the US. Sometimes it needs to perform actions based on those values, like emailing out reminders and expiring "single-use" session tokens. However there are clien...

Silverlight 4.0: Launch User Control to a new Window

Hi, Is it possible in Silverlight 4.0 to launch a piece of user control to another browser window just like WPF DevComponents docking control behavior? Thank you ...

Silverlight custom mouse cursor without canvas as root?

Hi all! Is it possible to use a custom mouse pointer (png image), without having a Canvas as the root element? With Canvas as root the mouse works (like here), but unfortunately I am using several custom controls which don't work well in such setup :( Thanks! Palantir ...

Can i use Activex inside silverlight4. Any documentation will be helpful.

I need to use a ActiveX control in my silverlight application. After some research i found out a few ways in which a silverlight app can use ActiveX control Use ActiveX control in a webpage along with silverlight plugin and use javascript for interaction between silverlight and activex. Use a webbrowser control in silverlight 4 and loa...

Issue of TextCompletion of AutoCompleteBox in silverlight

I have created my own cutom control in combination of two : button and a autocompletebox in silverlight. On a click event of a button i bind the itemsource of a autocompletebox and do this : acb.ItemsSource = p.ToArray();//list of an object of a class(person) acb.MinimumPrefixLength = 0; acb.IsDropDownOpen = true; And...

IDuplexSessionChannel BeginSend not sending during high UI thread tasks

We have a Silverlight 4 application utilizing an IDuplexSessionChannel to send data to/from the application to a WCF service. I've noticed that during very high UI thread usage (such as application startup when the UI is building itself) calls to our WCF service via IDuplexSessionChannel.BeginSend are not sent until the UI has completed...

Testing navigation in silverlight

I have a Silverlight application that is using a navigation frame. I am trying to write a unit-test for that application using the silverlight testing framework, however when I execute the test method I get the following error: InvalidOperationException No XAML was found at the location '/Pages/LoginPage.xaml' The unit-test method loo...

Silverlight DataGrid - simulate Outlook AutoPreview

I want to use the Silverlight DataGrid to show notes. When they select an item in the grid I am going to show the note in a different area of the screen. However, I am hoping to also do something similar to Outlook AutoPreview, where the first few lines of the note are shown beneath each row in the grid. What is the best way to accomp...

How to set stroke for Clip?

I would like to clip a button to a custom shape which i am able to do with the following XAML. The clipping region though doesn't have a border. What if i want to have a red border with thickness 2? What are the properties to set? <Button Content="Button" Height="79" Margin="22,10,17,10" Clip="M50.500008,20.499998 L70.090286,42.699997 L...

Silverlight TwoWay-bound ComboBox setting values to NULL

Before I explain my issue, consider the following object: Character.cs -> AnimationControlSettings.cs .. -> UpControlType (string) .. -> AvailableControlTypes (List<string>) The relevant properties in my ViewModel: Character SelectedCharacter ObservableCollection<Character> Characters I have a simple View where you select a ch...

How to get a value in cell EDIT template textbox inside the gridview? (Silverlight 4 only)

Hi inside my gridview, I have a column AccountNumber. In the edit mode, i use the CellEditTemplate with a TextBox to let the user type in value. Can anyone tell me a way to retrieve the value has been typed in the cell? I need that value in order to show a popup window which will filter the corresponding available list of AccountNumb...

Can i use Activex with silverlight4 ?

I need to use a ActiveX control in my silverlight application. After some research i found out a few ways in which a silverlight app can use ActiveX control Use ActiveX control in a webpage along with silverlight plugin and use javascript for interaction between silverlight and activex. Use a webbrowser control in silverlight 4 and loa...

Silverlight fluid move behaviour and a wrap panel

Hi All, I want to create a really slick wrap panel layout in my SL4 application, I have been doing a fair bit of research into the fluid move behaviors, and I think its where I want to go but I cannot get it right. I want a list of controls in a 2(row) X 2(col) Grid starting with just a singular control, then once I add controls to the...