Advanced Forum Search Results
-
Hi,
You can try to call the button's click event in the autocomplete's DropDownClosing/DropDownClosed event, like below:
private void Button_Click(object sender, RoutedEventArgs e)
{
...
-
Hi,
[quote user="Jaco1.Kruger"]How can we gain access to the datapoint instance or the legend item instance to reset the background colour as needed?[/quote]
You can use the chart's StylePalette to reset the legenditem's background.
Try to refer below sample code:
1. the xaml code:
<chartingToolkit:Chart ...
-
Hi,
You can try to refer this blog: http://weblogs.asp.net/nadeemiqbal/pages/silverlight-unit-test-for-value-converter.aspx.
hope it helps
-
HI,
HTTP status code 202 means the request has been accepted for processing, but the processing has not been completed. The request might or might not eventually be acted upon, as it might be disallowed when processing actually takes place.
You can try to turn on Trace and Message Logging in service to investigate how the operations ...
-
Hi,
It is not easy to say cause of this case without your code, you can try to refer this thread, it talked the same problem as you.
http://forums.silverlight.net/forums/t/120781.aspx
-
Hi,
The error code 2106 means, " Failed to load the application. It was built with an obsolete version of Silverlight".
What the version of the silvelright you are using? Try to download the new vesion of silvleright runtime.
-
Hi,
[quote user="PBSDCorey"]Is there a way to access the RIA Service outside of the Silverlight Project? [/quote]
If you want to use it in the asp.net application, you need to add below reference:
System.ComponentModel.DataAnnotations
System.Web.DomianService.WebControls, and you found them in hte RIA service folder: ...
-
Hi,
You can try to ask your network manager to download the microsoft updates from website, and then share with you.
Or you can try to install silverlight2 beta 2 instead of silverligh 3.
-
Hi,
[quote user="gauthamshetty86"]by returning zero "int count = System.Windows.Media.VisualTreeHelper.GetChildrenCount(parent);" [/quote]
What did you pass to the GetStackPanel method as the parent parameter?
Based on your xaml code, you can try to pass the uxSchedule as the parent parameter to the GetStackPanel ...
-
Hi,
You can try to use the InkPresenter control to draw on the image. the more you can see: http://msdn.microsoft.com/en-us/magazine/cc721604.aspx
And about how to save InkPresenter into image, you can try to refer this link: http://thedatafarm.com/blog/tablet/converting-silverlight-inkpresenter-images-to-a-png-file/