1,508 questions
1 vote
0 answers
54 views
Silverlight - ComboBox and other fields in toolkit:DataForm are not available in the .xaml.cs
So basically I have this silverlight application that contains a DataForm with a combobox. I need to go and set it's item source and etc. The problem is that the named fields in the form seem to not ...
1 vote
1 answer
73 views
Silverlight 3 Toolkit Chart Not all Columns show
I can't seem to find the solution to this strange problem. I have a Silverlight 3 toolkit Column chart that doesn't show all the columns. I have a data set of 10 columns and it only shows 7. image of ...
-3 votes
1 answer
43 views
How to create threads in silverlight native c++?
I am trying to create thread in native C++, but it results in an error. I am trying to do it this way: CreateThread(NULL,myfunction,NULL,0,NULL); It shows wrong arguments error and I don't know what ...
0 votes
0 answers
39 views
Silverlight error + Cannot perform runtime binding on null reference
In my crm application , i have an old silverlight webresource in the form of a grid which sets data in a field on the form. However when the record is created freshly, and if the user adds data into ...
0 votes
1 answer
35 views
Generate the infobulle with Silverlight
I need to generate the infobulle for a button in Silverlight with C#. I have this code : <Button x:Name="ctr" Content="Contrôler" Foreground="White" Margin="10 0" Click="ctr_Click" <...
1 vote
2 answers
2k views
Pass value to Child Window form Parent Page
I Need pass the Value to child Window.In child window there is two Text boxes.I need to show the value in child window Text box while while its getting opened. I tried the following way,My Child ...
0 votes
1 answer
40 views
Image doesn't Dispaly On Run Time
I am using below code for display image in Image button in silverlight. My problem is the Image Getting display on Design Time. But I cant able to view that Image on Runtime.What are the changes ...
0 votes
1 answer
257 views
Call WCF when silverlight application exit
I am working on silverlight application. I want to update a table field when user exit from silverlight application. For this I have used below Wcf service in Application_Exit method private void ...
0 votes
1 answer
474 views
How to Get Window Username in Silverlight page
How to get window Username in silverlight page. I try with below link but its give blank. http://rouslan.com/2009/03/12/20-steps-to-get-together-windows-authentication-silverlight-and-wcf-service/ ...
0 votes
2 answers
283 views
binding Textblock from two textboxex value in Xaml
I have two textbox txtFName and txtLName . Now I want to display txtFName - txtLName in textblock using binding. For bind only txtFName I write below code: <TextBlock x:Name="textblock" Text="{...
0 votes
0 answers
83 views
xbox smf player change template
I need to change the default UI of SMF player on xbox 360. I have this SMF player from the reference application that comes with xbox ADK from Novermber 2012. But I don't know template parts names, ...
0 votes
1 answer
661 views
charts for x-axis (name is too long overlapping)
I have a chart for windows phone 7.1. However the display name on the X-axis is too long and causing a overlapping to one another. Example of it: How can I solve this ? As I need to display 7 more ...
0 votes
1 answer
18k views
adding items into list by for loops
I am creating a chart for windows phone 7. This is the foreach for each hawker returned: void dbSvc_retrievepopularhawkerCompleted(object sender, RouteServiceRef....
0 votes
1 answer
190 views
Compress Files before save in silverlight
I have a file upload to upload and save bytes of files into database. Now I want to first compress my file size before save into database. I have gone through below site; http://programmerpayback....
0 votes
0 answers
1k views
Get all controls id of silverlight page
I want to get all control's id of silverlight page. So I want to iterate through all controls inside xaml page. For this I have used following code: private List<UIElement> GetElement(...