Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications.
0
votes
0answers
9 views
Dependency property and TypeInitializationException
I have wierd problem and I don't know completely what is going on. In my windows phone 8 application I created user control with dependency property:
public string Symbol
{
get { return ...
0
votes
0answers
4 views
RadGridView Selected Row
I have a Telerik GridView. My GridView has several columns in it. The first column is a checkbox, and when I check or uncheck it, it changes a property in my Model named IsSelected!
The part of my ...
0
votes
0answers
6 views
Negative values in my PivotView's PivotViewerNumericProperty (Silverlight 5)
I have a pivot viewer that I added a numeric viewer property to. When the values are all possitive, it works fine. When the values are negative, I get an error:
Webpage error details
User Agent: ...
0
votes
0answers
8 views
In Silverlight, How to bind SelectedItem of ComboBox in a ControlTemplate to a ViewModel Property
I have this code of a ComboBox that works and binds the SelectedItem to a property in my ViewModel:
dxe:ComboBoxEdit x:Name="luTeacher" Margin="0,5,0,0" AutoComplete="True" ItemsSource="{Binding ...
0
votes
0answers
7 views
Silverlight 5 OOB Taskbar Icon
This may seem like a ridiculously stupid question, but how do I set the taskbar icon shown while an OOB Silverlight App is running? I am using Studio 2012 and Silverlight 5.
I have gone into the ...
0
votes
1answer
31 views
Windows Phone Image Source binding to listbox selected item
I have a listbox of images. And a image control. When I select an image in listbox that image should be shown in image control. But its not happening.
Here is my xaml:
ScrollViewer x:Name="Sc" ...
-2
votes
0answers
16 views
How to design first tab control or telerik tab control using xaml in Windows Phone XAML? [closed]
Hi; i am new in wp8 application. I wish to design tab control like below. How can i do that. i have been written ecf services to fill tab. i dislike prepared code. i am not a leech. i have no time to ...
0
votes
0answers
7 views
HttpWebRequest not sending renewed cookie only in Safari, Silverlight
I am making post request in my Silverlight Application using HttpWebRequest which includes cookies in the header.
Following is my code
HttpWebRequest request = ...
0
votes
1answer
23 views
Change the Visibility and then change the Opacity of a Silverlight/WPF UIElement
I'm making a Windows Phone 8 app and would like to first fade out and then -- and only then -- actually turn a UIElement's Visibility to "Collapsed". However, I can't figure out how to make them ...
0
votes
0answers
10 views
Sending Child Collections with an Invoke and WCF RIA
We have a very complex Save method where we call an Invoke method which we pass 2 List of Entites as parameters.Everything was working fine so far. Now we have to make a change to the save method and ...
0
votes
0answers
23 views
DataGridTemplateColumn sort breaks when visibility changes
I have a data grid bound to a wcf-ria query for documents, where I use a DataGridTemplateColumn to display a Hyperlink button for the title property. The grid and column starts out working as ...
0
votes
0answers
15 views
Silverlight Data binding taking an age & locking gui
We have a web service that picks up a report from a server and returns it to the Silverlight GUI. In the GUI we have an event handler that calls the following function:
private void ...
-2
votes
0answers
16 views
Adding animation to SSRS charts
I have a bar chart created using SQL server reporting services & Visual studio 2012 which is embedded in asp.net page. I need to add animation to the chart i.e. add animation to the columns making ...
0
votes
0answers
11 views
How to display data in DataGrid with Silverlight
I want to run a SQL Query like
SELECT a,b,c,d FROM table1 WHERE userID.table1 = userID.table2
I want the output to go to the a DataGrid.
I am using SQL Server 2012.
This is a Silverlight 5 ...
0
votes
0answers
12 views
What is the Isolated Storage Location in Windows 7 and 8?
I want to store a file in my Windows 8 or Windows 7 Isolated Storage location.?
Knowing the location, i want to place some files in the location.
So, how to get the location of the isolated storage ...
0
votes
1answer
15 views
Why does it throws a Arg_ InvalidCastException when I cast a color resources in WP7?
I work on a project target on Windows Phone 7.5 and above.
I define a color resources in App.xaml and use it as a global resource.
And When I use it in code-behind, it throws me a error.
The Resource ...
0
votes
0answers
25 views
Min Height for a Row which can be collapsed in some scenario
I have a grid with multiple rows. out of which some of the rows can be collapsed in some particular scenario. Is there a way to define min height for these collapsible rows so that there height ...
0
votes
0answers
10 views
Silverlight and Non-Public members
Is it possible somehow to access non-public properties in Silverlight? Maybe using reflection?
I've tried following steps:
Get class type
Get property info by prop name
prop.GetValue(obj, null)
...
0
votes
0answers
12 views
Accessing generic non-public member in Silverlight
How can I get value of generic non-public property in silverlight?
I've tried this:
var webDomainClient = (WebDomainClient<IConfigServiceContract>) DomainClient;
var ...
0
votes
0answers
5 views
WebDomainClient ChannelFactory is inaccessible
I am using Silverlight 3 and RIA Services Beta November 2009.
I was faced with issue connected to timeouts. When my server-side processing takes longer than a minute I get exception like "timeout ...
2
votes
0answers
31 views
Using Contains as 'IN' cluase with LINQ in Entity Framework in Silverlight
I am trying to return a list of items (vwProposedMigrations) where the DeptCode of the vwProposedMigrations is IN a list of depts that the user is authorised to manage.
result contains a list of ...
0
votes
1answer
21 views
ComboBox's SelectionChanged inside datagrid not firing mvvm
I am using MvvmLight toolkit for my event interactions, i have tried many solutions available but none worked. The combo box inside my data grid's Selection Changed event is not firing
Here is my ...
-3
votes
0answers
11 views
Appointment Scheduler Control Silverlight [closed]
I need to design appointment scheduler for scheduling appointments for patients( Scheduler contains Day,Week and Month View). Please guide me to do the design the screens and for functionality.Thanks ...
0
votes
2answers
22 views
Styling Inner Elements in XAML Style
i have this code
<HyperlinkButton Style="{StaticResource HyperLink-Navi-Container}">
<HyperlinkButton.Content>
<TextBlock Text="Sample Text"></TextBlock>
...
0
votes
1answer
22 views
Hosting ASP.net web api (odatacontroller) inside silverlight site
I want to expose some odata resources from my silverlight site. WCF data services doesn't provide the features I need so I need to use ASP.NET web api instead.
Is it possible to host such ASP.Net web ...
0
votes
0answers
11 views
Http-post parameters and display response in a browser using Silverlight and JavaScript
While doing Silverlight's interoperability with JavaScript I've faced a strange behaviour in my Silverlight Out-of-Browser (OOB) application. My goal is to http-post some data to the specific site. We ...
-3
votes
0answers
29 views
Login in silverlight [closed]
I am new to silverlight and I have to design a login page which will have user name and password and a button control.After submitting the credential ,when user clicks the button ,it will check ...
0
votes
1answer
17 views
Silverlight Button “isWindowless” setting dynamically
I am generating my Silverlight Button through following code.
Silverlight.createObjectEx(
{
source: controlSource,
parentElement: container,
id: "ControlId",
...
1
vote
0answers
19 views
Split string with height and width on textblock - Silverlight Window phone
I have long string and want binding to Textblock limit with width and height. I caculator height Textblock as:
textResult.Text = reader.ReadToEnd();
double h = textResult.ActualHeight;
If height ...
0
votes
2answers
51 views
How to wait until an event is finished without blocking execution in the UI
I’m trying to figure out how can I make sure that the event has fired before letting the rest of the code run.
I hook up an event like this:
public static class ServiceUrlQueryParameters
{
...
0
votes
0answers
35 views
+50
Can't use InkCanvas in SilverLight
I am trying to create my first program in SilverLight. But I can't use the InkCanvas.
Simply, I just:
Create a new project.
Choose SilverLight Application (Framework 4.5)
UnCheck "Host the ...
1
vote
3answers
33 views
Image Aspect Ratio
I have a grid system on my silverlight windows phone 8 page which will accommodate a number of pics on a button click. The size of the cells assigned to be 150x100.
My question is, if the original ...
0
votes
3answers
47 views
endMethod never called in TaskFactory<T>.FromAsync()
I have the following Silverlight code.
Container container = new Container("http://localhost:8080/odata");
DataServiceQuery dsq = container.MyEntity;
IEnumerable result = ...
0
votes
0answers
22 views
Binding SilverLight Treeview From ViewModel Using Entity Framework
I've got a database structure similar to this:
Project
ProjectID(pk)
ProjectName
ProjectFile
ProjectId
FileId(pk)
Notes
I have to bind a silverlight treeview the Parent should be the ...
1
vote
0answers
46 views
<TextBox.Behaviors> and <Button.Behaviors> not working attached property behaviors not found
the TextBox.Behavior is not working in this property and Button.Behaviors is also not working properly. Please help, me I want to create a list on the same page,
because i am working on WP7 App : ToDO ...
0
votes
0answers
15 views
Change tabcontrol selectedIndex from another page
i have a PivotViewer that is embedded in a TabControl.
I have created a link to each of the trader cards which will change to another tab when user clicked on it. But i wasn't able to change the ...
0
votes
0answers
12 views
Silverlight DRM offline scenario - persistent license store
The scenario is when users purchase a piece of content and then download it to their computer to play whenever they want to.
Because the user is attempting to play back protected content offline, ...
0
votes
0answers
19 views
error in silverlight app with radspreadsheet control
i write a silverlight app with telerik Radspreadsheet Control, when i run my app in win 7 and 8 in Firefox, google chorme, opera and IE 9 it work corect, but Some of my clients can not load this app ...
0
votes
1answer
40 views
Some Silverlight and Windows Phone generic questions of a beginner
I'm starting developing Windows Phone applications and even having a somewhat strong background in WPF is my first time with Silverlight. There are some things that I don't understand yet:
Is ...
-1
votes
0answers
17 views
where to place crossdomain and clientaccesspolicy.xml with siteminder
Hi In my staging site we have a silverlight xap file loaded onto the web page.i think its calling some wcf service to do the functionality(sorry am not programer am server admin).
We are using ...
0
votes
0answers
31 views
Silverlight not bind image .png from GridView
Silverlight does not show the image selected from a DataGrid
Hi appreciate your help on this.
I have reviewed and even I put it back on the forum with more arguments, but I fail to solve, and I need ...
0
votes
0answers
20 views
Silverlight - Passing mouse coords from UI View to ViewModel
I'm using Silverlight with MVVM (using Caliburn.Micro).
I've created a simple rectangle in the View as follows:
<Rectangle x:Name="Rectangle2" cal:Message.Attach="[Event MouseMove] = [Action ...
0
votes
1answer
21 views
Using local brush resources for Visual States
I'm trying to template a button in Blend and I have the following structure:
What I would like to do is to change the background color of the button using Visual States when it is in the MouseOver ...
1
vote
0answers
34 views
Rubberbanding with OxyPlot
I am using OxyPlot for charting in my application. I want to extend the OxyPlot library to include a rubber-banding line series, similar to how a polyline might rubber-band in a CAD application.
I ...
1
vote
2answers
62 views
Sorting a list by first finding the field to sort on within in the list
This one seems difficult and would appreciate any help or assistance that one might be able to give.
I have a list, List. Each Car object has a list, List. I would like to sort my Car list by 1 of ...
0
votes
1answer
39 views
LongListSelector get selected index
Is there a way to get the index of a particular element from a LongListSelector control? I'd like to remove the object the user has selected but there doesn't seem to be a straightforward way of doing ...
-1
votes
0answers
18 views
In Silverlight ScrollViewer not working in touch [closed]
The Silverlight ScrollViewer not scrolling in touch monitor need to set any properties.There is no PanningMode in Silverlight.
1
vote
3answers
67 views
Crm 2011 : Refresh associated Grid View
Is there a way to refresh associated Grid View ?
I have a Sales Order View on the Account Form, on this Form I have a button (New Order) that open a new Sales Order Form, in this form I do my Orders,
...
1
vote
2answers
37 views
Cannot find silverlight Busy Indicator Control in Choose Items ToolBox Window
I have Installed the Silverlight 5 SDK and I am Trying to Add silverlight Busy Indicator Control to my ToolBox.But I cant Find it in Choose Items ToolBox Window
How Can I Add silverlight Busy ...
0
votes
1answer
27 views
WCF RIA Service timeout
I have context like that:
[EnableClientAccess()]
public class MyRiaService : LinqToEntitiesDomainService<EntityFrameworkContext>
Using Silverlight client I am initiating heavy database ...




