Advanced Forum Search Results
-
It's been a long time since I did that. Anyways, here is the code I used:
1 <Button x:Class="Imbibe.DNN.MLM.MyTree.EndPoint"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 ...
-
Thanx Mog. Yes, that was exactly what I meant. And I had already moved forward considerably in the direction that Vlaidimir's Blog describes.
It is sometimes frustrating to reinvent the wheel, spend time & resources in creating something that already exists. Anyways, thanx for pinting me out in the correct direction.
Although some people ...
-
I am building a complex Search Control. The user would specify the Search Criteria as well as the columns required to be shown in Search Results.
I have already implemented such a Control for Desktop (using WinForms) & Web (using ExtJs). These tasks were handled easily in Desktop Apps or Server-Side ASP.NET grids by generating dynamic Sql ...
-
SL 3 does not have a public release yet. So, I am downloading Toolkit for SL2 for production use. Are there any changes between the toolkit for SL2 & SL3??
If yes, are they major or breaking ones that would require retesting when upgrading to the toolkit for SL 3 after the public SL 3 release??
-
[quote user="waldred"]
It would be interesting to see which HTTP request is actually sent first.
[/quote]
It would take sometime before I go back and do some analysis of my SL app. Meanwhile, your comments were interesting. Let us say, I set the ImageSource on Image directly using a Uri (most probably, it would then initiate ...
-
I am creating a Gallery sort of a thing. The number of images displayed could vary, which means I can not rely on limited isolated storage.
Looking at the larger picture, my question is a more funamental one. Does WebClient goes through local browser cache before fetching a resource from the remote server, or it always loads it ...
-
Does the WebClient class uses browser cache??
I have put 2 Image Controls. For one, I set the Source Uri to a URI (images/1.jpg) directly. For the other, I use WebClient to download images/1.jpg, constrcut a BitmapImage from the result, and then assign the object to the second control's source.
Now, when I refresh the page, the first Image ...
-
I tried setting isWindowLess to true, and it WORKED.
However, there are way too many cons to setting this to true. Is there no other way???
-
The default value of:
System.Windows.Interop.Settings.WindowLess
is false. And I am not changing that value. Which should mean that it is a Windowed app.
I should clarify one more point. I just tried setting CSS z-index on silverlight plugin host <div> to -1. z-index was not specified on the menu. If someone has played around with this, ...
-
I am using Silverlight in bits-and-pieces on a site to make parts more interesting, rather than a completely SL based site.
There are small SL galleries directly below the site pop-up menu. Now. here's the problem. The pop-up menu region overlapping with SL plugin area is hidden. I have tried using CSS z-index property on SL plugin tag & ...