319 questions
0
votes
0
answers
373
views
how to interact with Silverlight VBA [duplicate]
I'm having a hard time making an application for automation using VBA, I can login to the site and access virtually every part of the site, but at some point I run into Silverlight, I can not access ...
0
votes
1
answer
67
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)
It ...
6
votes
1
answer
932
views
Autocompletebox SelectedText Bug
I want to bind both the SelectedText and SelectedItem properties of an AutocompleteBox because my client wants to be able to input text and select from the list also. It's working properly but ...
...
0
votes
2
answers
65
views
Silverlight : how to put a simple image?
I have troubles with element.
Well, I think my path should be wrong but I dont find the problem.
Here is my simple code :
<UserControl x:Class="videoplayer.Page"
xmlns="http://schemas.microsoft....
0
votes
1
answer
370
views
read in image from SharePoint 2007 custom list & display @ Silverlight 2.0 control,
How may I read in images & display them on my Silverlight 2.0 control when my output is the following? (i'm currently using lists.asmx)
20;#http://moss:48420/Image Picker Picture
List/1e166fc4-...
1
vote
1
answer
719
views
Pass 2 parameters to Silverlight control from SharePoint web part project into Silverlight application
I have 2 parameters defined in SharePoint web part project, meant to be passed into Application_Startup() in a Silverlight application when a user selects from 2 combo boxes (browsable properties). ...
0
votes
1
answer
283
views
access textbox's property 'MaxHeight' within a datatemplate, silverlight 2.0
how do i access a textblock inside a data template which is embedded within a ListBox? I wish to assign a new value to the textblock's attribute such as MaxHeight.
Code-behind as well?
0
votes
1
answer
397
views
Enable button on another .xaml page
I have a button 'ReadMore' defined Page.xaml. How may I enable it again when I click on a button that closes ThumbnailDetails.xaml? Users select an item @ a ListBox and they are directed to ...
1
vote
0
answers
69
views
Silverlight Controls Edit Value
TextBox1.DataBinding.Add("Text",dataset.Tables["Sample"],"Id");
TextBox2.DataBinding.Add("Text",dataset.Tables["Sample"],"Name");
How Can I make this in Silverlight?
0
votes
1
answer
43
views
How to change textbox's background in specific positions of the text in silverlight?
I have a text box and I want that when the user clicks on some letter of the text,the letter's background will change.
someone has any Idea of how to implement this?
Thank you.
1
vote
2
answers
98
views
How can i get this type of layout in Silverlight?
I have a listbox and it's bound to a list of simple objects. As we know the listbox by default has it's items host as a Stackpanel and so it lays out items in this fashion
item1
item2
item3
item4
...
0
votes
1
answer
63
views
Silverlight Installation problem
I have a problem of silverlight installation.
I am using visual studio 2008 and i have installed silverlight 2.0. It is installed successfully. But it is not display in File--> New Project. So how can ...
3
votes
1
answer
622
views
disable rows in datagrid silverlight 2.0
I have a datagrid and when user tries to edit a row then I want to have only that row editable and all other rows disabled. Is this possible ? I tried looking for datagrid.rows but there is none.
...
1
vote
1
answer
468
views
VS2010 Target Silverlight Version 2.0?
I've just upgraded to VS2010 as I was running into problems with a Silverlight project that I needed to be built in 2.0 but I also needed other projects built in 3.0.
I read about VS2010's ability to ...
3
votes
2
answers
1k
views
How can I get element from given point on canvas?
I need to get element from canvas by given point.
For example I have Rectangle on Canvas, which CanvasLeft and CanvasTop values are setted to some values.
I whant get element from canvas which ...
0
votes
1
answer
290
views
.wmv player not working
So...I've got an embedded object that looks like this:
<div id="vid">
<script type="text/javascript">
var cnt = document.getElementById("vid");
...
1
vote
1
answer
2k
views
How to add handler in dynamic datatemplate
I am successfully declaring a data template in a code behind as follows:
private static DataTemplate CreateTemplate(string sortMemberPath, HorizontalAlignment horzAlignment)
{
const ...
0
votes
1
answer
746
views
How to convert Silverlight XAML to Resource dictionary in Silverlight 2
I am looking for the quickest and easiest way to combine two silverlight projects. Once has controls all in Silverlight XAML the other is template driven and uses a template based on a Silverlight ...
0
votes
1
answer
281
views
.Net RIA Services: Javascript callback forces full reload of the application
I've successfully implemented a Javascript call from Silverlight (i'm calling a java applet).
When the user finishes using the applet, I'd like to send the data back to Silverlight;
so I've created a ...
1
vote
1
answer
928
views
What are the differences between Silverlight 2 and Silverlight 3
Can you give me a breakdown of the differences between Silverlight 2 and Silverlight 3?
1
vote
1
answer
2k
views
Convert WPF XAML to Silverlight XAML
I have question about using XAML across the WPF and Silverlight platforms.
Background:
I have a silverlight app that needs to pass the Xaml to WPF and do some calculation to update the XAML. When I ...
1
vote
2
answers
350
views
How Can I Test the Silverlight Install Process
I would like to customize the user install process for my Silverlight application. I would need to repeatedly go through the installation process on my development workstation Short of uninstalling ...
1
vote
1
answer
6k
views
Integrating Silverlight into aspx page
How we can add the silverlight project into a aspx page. I had created one digital clock project in silverlight. But i don't know how to integrate with the aspx page.
Thanks in advance..
5
votes
5
answers
6k
views
Silverlight 3 - Data Binding Position of a rectangle on a canvas
I am currently trying to bind a collection of objects to a Canvas in Silverlight 3 using an ItemsControl as below:
<ItemsControl x:Name="ctrl" ItemsSource="{Binding myObjectsCollection}">
&...
2
votes
1
answer
365
views
Start Storyboard When Text Changes
I have a TextBlock bound to a property on my view model. I have a StoryBoard with fades the text in and out using the Opacity property. I am using this text to give the user feedback after they have ...