Search Results

1
vote
1answer
63 views

Syncronously populating DependencyProperties of a custom control in Silverlight

I have a Silverlight custom control with two properties; Text and Id. I have created DependencyProperties for these as per the code below. public static readonly DependencyProperty …
4
votes
4answers
194 views

What is the best way to ensure that web-page contents are redownloaded from your web-site instead of using cached temporary internet files?

I have noticed that when updating my web content files (in this case, a silverlight XAP file) the browser does not detect that the file has been updated, and continues to reads the locally cached f …
0
votes
2answers
395 views

Simple silverlight open-file-dialog errors

A while back I wrote a silverlight user control which had a csv import/export feature. This has been working fine, until recently I discovered it erroring in one scenario. This may have been due to …
2
votes

add close button

Assumptions: 1. You are wanting a close function using a control from within silverlight. 2. You are wanting the browser window to be closed.. Adding a but …
3
votes

Image adding in silverlight

If you simply want to add a local image to an xaml control use the following: <Image x:Name="LocalImage" Source="Path/MyImage.png" Margin="10,10,0,0" Width="16" Height="16" Horiz …
0
votes

How to bind SelectionStart Property of Text Box?

As far as I am aware, this feature has not been included in Silverlight 2.0. Read …