Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications.
0
votes
0answers
5 views
Silverlight custom control depenencyproperty as control
I am created a custom control that contains a button. The button propert is dependencyproperty and users can bind it in XAML side.
public class MyControl : Control
{
public static readonly ...
0
votes
1answer
20 views
MultiDataTrigger on two DataGrids
I'm trying to have a button in a disabled state until both DataGrids have at least one selected item. Currently it remains in a Enabled state.
<Button MaxWidth="200" Grid.Column="0" x:Name="Add" ...
0
votes
2answers
19 views
how to provide imagesource for an image in windows phone code behind(c#)
This is not working while binding the image dynamically
Image Imgsource = new Image();
Imgsource.Source = new BitmapImage(new Uri("/Finder;component/Images/Chrysanthemum.png", ...
1
vote
0answers
52 views
Why I can't bind a ObservableCollection<T> in Windows phone 7.8 and below?
Context:
Visual Studio 2012 Express for Windows Phone (Update 2)
Project build based on the official template Panorama (Windows Phone OS 7.1)
Problem:
All codes works OK in WP8, but when in WP7.8 and ...
0
votes
1answer
12 views
Register views with regions depending on the user rights in Silverlight
We have a module class which implements the IModule interface and it has only one method Initialize() in which we register our views.
Is it possible to register these views after successful login?
I ...
1
vote
0answers
16 views
VS2010 Microsoft.Windows.Controls.DataVisualization.Charting C# code for StackedChart
Im creating a silverlight application for now, and I'm having a difficulty how to set an itemssource variable for a stacked chart.
Im using Microsoft.Windows.Controls.DataVisualization.Charting ...
0
votes
0answers
8 views
silverlight how to remove the abstract definition from the UserControl declaration
I have SilverLight USercontrol and while Opening its design Part ,I am Getting this Error
Cannot create an instance of "DialogBase".
at ...
0
votes
0answers
41 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
1answer
11 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
9 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
11 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
8 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
39 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
17 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
8 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
24 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
26 views
DataGridTemplateColumn sort breaks when grid is hidden and displayed again
I have a data grid that lists documents. We use this grid in a tabbed application, where one tab is used to search for documents, and other tabs are used to add/edit/delete documents. The problem ...
0
votes
1answer
20 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
19 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
16 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
13 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
16 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
1answer
12 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
1answer
17 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
30 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
21 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
53 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
40 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
48 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
23 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
49 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
18 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
32 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 ...



