I have the following XAML code as part of a custom control:
<telerik:RadTreeView x:Name="treeModules">
<telerik:RadTreeView.ItemTemplate>
<core:HierarchicalDataTemplate ItemsSource="{Binding Submodules}">
<local:ModuleInfoUserControl IsReadOnly="{Binding ElementName=ctrlIsReadOnly, Path=IsReadOnly}"/>
...
suppose one end of my polyline is fixed say at 0,0 and when i move the mouse i want the polyline other end to be on my mousepointer exactly... what should i do in this case.... sorry i am very new to silverlight
...
My concern is that novice users will turn their back to a website which asks them to install Silverlight.
One of the reasons I think they might be scared of installing Silverlight is because they are not aware of what Silverlight actually is.
What's your take on this?
...
I want to set up data binding using a custom component.
Basically, I'd like to do something like this in my XAML file:
<ControllerDataBindingBridge>
<Bind TargetControl="eFirstName" Property="FirstName"/>
</ControllerDataBiondingBridge>
How do I create ControllerDataBindingBridge, there doesn't appear to be a simple Component whi...
I am just getting started with Silverlight and have recently added a Silverlight project to an established solution. In this particular scenario my solution included an existing ASP.NET web site which Visual Studio kindly offered to integrated my Silverlight application into, which I accepted.
So everything is fine and all, and the Silv...
I have a Silverlight class marked with the ScriptableType & ScriptableMember and I expect to be able to pass the object from Silverlight to javascript. When I call JSON.stringify (in javascript) I expect to receive a JSON representation of the object but all I get is {}
The class is defined as:
[ScriptableType()]
public class MyEvent
{...
I'm trying to call a js function from Silverlight using the HtmlPage.Window.Invoke method but it won't call a function contained in a seperate js file.
Anyone know why?
Cheers
AWC
...
Hi, In a silverlight 3 project I have to draw an arc programatically and I have radius of circle and inner angle of the arc. Could you please direct me to some related articles.
Thanks in anticipation!
Haris
...
Has anyone out there been able to zoom past level 21 with the Bing Maps Silverlight control? My tiles are generated and I can get them to show, but I can't reach the zoom level I require (level 22). I have tried everything, including using a LocationRectTileSource with the zoom set past 21. I'm really out of ideas.
...
I want to show my Silverlight 3 application's version number in the about box, but when I use a traditional .Net call like:
Assembly.GetExecutingAssembly().GetName().Version;
I get a MethodAccessException on the GetName() call. How am I supposed to get the version number of my assembly?
...
We need some support statistics if available, to decide the future of few major investments we are planning on top of Silverlight platform.
According to RiaStats http://riastats.com/ - Silverlight penetration rate was around 20% in March 2009, and now it is around 50%. In US, presently it is ~38%
Looking for answers with some stats/fig...
I want to design an associate silverlight diagraming surface where you can type in boxes, and then drag these boxes around and link them up to other boxes using lines, arrows. My first problem is what is the first step to take to go about this approach? I am looking for something like a mindmap or visio diagram.
Thanks,
Eric
...
Question:
Are there known issues making calls to a service that calls another service from Silverlight?
Scenario:
I have the following 3 projects:
SilverlightClient - Silverlight project with a Button
SilverlightClient.Web - A web application that hosts the SilverlightClient.xap.
BackEnd - A different web application that hosts the ...
There seems to be a strong movement towards Silverlight, even with Windows Phone 7 rumoured to have dev based around it. Is Silverlight a valid alternative for all web/thick client development? You can remove the concern around plug-in requirements. I'm more concerned about it being technically deficient or cumbersome as opposed to tr...
In XAML (Silverlight), how do I edit anything but the first tab in the VS Designer? All I can see is the first tab, and I don't know how to set which one is selected so that I can see the content of all tabs. Thanks!
...
I have two tables in my database: Books and Categories. In my EDMX I have generated classes Book and Category, and correspondingly BookSet and CategorySet. I created BookService and can access it in my SilverLight code via BookContext.
Through BookContext I am able to load a list of all books. My problem right now is I am trying to a...
I have been trying to get the Silverlight charting toolkit to allow me to have a variable number of series based on the data.
A single line graph is easy you have two data points in my case NumberOfDays is the X axis and CountOfItems is the value to be graphed.
Now I want to be able to say
Product 1, Day 1, 10 items
Product 2, Day 1,...
How to use Ajax with Silverlight?
...
This was inspired by a question I asked recently regarding design time behaviour in my WPF app. (http://stackoverflow.com/questions/2290499/cant-databind-at-design-time-in-wpf-using-mvvm-viewmodel-property-never-gets-c)
The net result of that is that my design time DataContext/ViewModel works perfectly in Blend, but doesn't show up in V...
I would like my elements generated from datatemplate to look differently depending on some properties in the model. For example I want to display the text in various colors or present different images or path drawing for each generatred element. I know how to do it in general, but I'm looking for a solution that would allow editing the v...