silverlight-3.0 Questions
3
Solved
As I see, WP7 buttons are surrounded by a black space of some pixels.
How I can remove it?
I've read this post, but I didn't managed to remove it! Could you please give a working example?
I've t...
Lactoflavin asked 23/1, 2012 at 1:3
2
Solved
XAML:
<navigation:Page ... Title="{Binding Name}">
C#
public TablePage()
{
this.DataContext = new Table()
{
Name = "Finding Table"
};
InitializeComponent();
}
Getting a ag_e_pars...
Deprive asked 18/4, 2010 at 16:19
8
I'm assuming the issue I'm having is related to caching. Code changes I make are not getting picked up when I debug. Most times I get served a previous version of the app. How do I prevent this fro...
Highoctane asked 22/11, 2009 at 4:20
3
Solved
In WPF it was possible to organise the XAML for multiple user controls by keeping the markup in separate XAML files in the themes folder and then using MergedDictionaries to import them into generi...
Neoprene asked 27/3, 2009 at 9:21
3
Solved
I have a situation where some application wide values are stored as constants - this is a requirement as they are needed in attribute definitions (attributes must resolve at compile time, so even s...
Sakai asked 21/12, 2009 at 17:55
3
Solved
I have a Silverlight 3.0 application that is using a WCF service to communicate with the database, and when I have large amounts of data being returned from the service methods I get Service Not Fo...
Boehmer asked 18/3, 2010 at 21:59
2
Solved
Lets say you have this text
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies, purus lectus malesuada libero, ...
Randle asked 14/10, 2009 at 12:29
6
I'm writing my very first Silverlight app. I have a datagrid with a column that has two labels, for the labels, i am using an IValueConverter to conditionally format the data.
The label's "Conten...
Ungulate asked 28/8, 2009 at 5:24
2
Solved
Could anyone tell me the events that are fired during a Silverlight control's lifecycle please?
For instance in ASP.NET you would have PreInit, Init, PreLoad, Load, etc.
Faculty asked 21/1, 2010 at 15:53
3
Solved
I have two ViewModel classes : PersonViewModel and PersonSearchListViewModel. One of the fields PersonViewModel implements is a profile image that is downloaded via WCF(cached locally in isolated s...
Awash asked 17/12, 2009 at 20:36
5
Solved
I have not been able to find a clean solution to the following problem even though there are a few related questions already on SO.
If I have a data template that is being used multiple times, for...
Protomorphic asked 10/8, 2010 at 15:27
4
Solved
I'm trying to open a silverlight project in Visual Studio 2008 and getting this error.
The project type is not supported by this installation.
Let me tell you I did installed:
VS2008
SP1
Silver...
Impunity asked 12/11, 2009 at 13:58
5
Solved
I'm dealing with the dreaded <Run/> in Silverlight 3 and having to programmatically create a <TextBlock> and its inlines:
Why dreaded? Because it doesn't work, I guess, the way you'd e...
Duque asked 18/4, 2011 at 3:28
2
Solved
Does Visual Studio 2010's Silverlight support ArrayList? If yes then how to use it, if not then why?
How to use ArrayList in Silverlight?
Prioress asked 15/11, 2010 at 5:58
2
Solved
So I have some URL of an MP4 file. I want to develop a simple Silverlight application to play it.
How to do it? (Preferably with example code.)
Bi asked 27/12, 2009 at 15:33
5
Solved
I'm using a silverlight 3 datagrid, and within it, I'm nesting related records in another control by using the rowdetails (visibilitymode = visiblewhenselected).
I really like how this works, but ...
Bunin asked 7/8, 2009 at 1:53
11
Solved
Who provides the best 3rd party Silverlight controls for LOB applications? In the past I’ve used Infragistics for WinForm controls which were very good and they also provide good support. How...
Larva asked 19/1, 2010 at 6:3
5
Solved
Say I have a C# Silverlight 3 application with a number of pages. The first page is called Home, and the second page is called Details. The only way to navigate to details is programmatically. How ...
Drayage asked 30/9, 2009 at 13:19
5
Solved
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}">
&...
Rancor asked 28/10, 2009 at 13:53
3
We have been creating silverlight unit tests by creating a plain vanilla .net unit test project, removing all references except for the unittestframework one, and then adding references to the SL a...
Gussy asked 30/10, 2009 at 9:14
3
Solved
I have seen the word Tombstoning in many tutorials. I did not get what it actually means. Can you please explain?
Sherronsherry asked 13/1, 2011 at 5:3
3
Has anyone written an event log that uses Isolated Storage in Silverlight 3?
Any suggestions on implementing one?
Specific questions:
Should I keep a stream writer open, or should I open,write, ...
Callao asked 16/10, 2009 at 17:9
2
Solved
I have a list view, on a panoramic control. I've also created an event for MouseLeftButtonUp however I find that when scrolling between the panorama items the MousLeftButtonUp is triggering (it mak...
Diao asked 9/1, 2011 at 5:7
1
Solved
By default WP7 buttons are surrounded by a black space of 5ish pixels. I'd like to remove this, but I've tried setting the Margin, BorderThickness, Padding properties to be a Thinkness of zero, but...
Mary asked 15/12, 2010 at 9:10
1
I have a complex User Control that contains some views, each have its own ViewModel.
My question is how can all of these ViewModels share some data (for example an observable collection) without ea...
Disinfest asked 13/12, 2010 at 14:20
© 2022 - 2024 — McMap. All rights reserved.