Advanced Forum Search Results
-
hello,
you may know fire bug is open source! im just remind you again... if you want to do such thing go through the fire bug source you will get the idea behind it.
open source fire bug link below
http://code.google.com/p/fbug/
-
Well,
Let me explain my innocent want! I got your point that there is no benefit if put all images to embed resource.
The idea comes in my while play with http://silverlight.live.com/ only give option to upload video and xap.
I was try with deep zoom and can host it to http://silverlight.live.com/ because ...
-
hi,
im try to pakage DeepZoom GeneratedImages using resouce/content/EmbeddedResource any option thats make only one file mean xap.one xap will be contain everything. i don't want to saparate GeneratedImages folder for images.
what i did im export project from deep zoom composer then and ...
-
yes,try with
System.ComponentModel.BackgroundWorker
BackgroundWorker workerresult = new BackgroundWorker();
workerresult.DoWork += new DoWorkEventHandler(workerresult_DoWork);workerresult.RunWorkerCompleted += new RunWorkerCompletedEventHandler(workerresult_RunWorkerCompleted);
workerresult.RunWorkerAsync();
//event handeler void ...
-
seems you want to Process the image.
Image img1 = (Image)sender;
System.Uri uri = new System.Uri(((BitmapImage)(img1.Source)).UriSource.OriginalString.ToString(), UriKind.Absolute);
BitmapImage bmpImg = new BitmapImage(uri);
Image snipImage=new Image();
snipImage.Source= bmpImg;
snipImage.Height="100"; ...
-
hi,
you can get regional settings in asp.net then you can pass you information to SL by using iniparams
//how to get regional settings in asp.net
public somemethod(){
HttpRequest Request = HttpContext.Current.Request;
if (Request.UserLanguages == null)return;string Lang = Request.UserLanguages[0];
if (Lang != null){
if ...
-
hi,
you can use ChannelFactory to create proxy then there will be no namespacing problem..
check link for How to: Use the ChannelFactory
http://msdn.microsoft.com/en-us/library/ms734681.aspx
-
hi,
to write text in status bar
HtmlPage.Window.SetProperty("status", "hi");
check this thread
http://silverlight.net/forums/t/21969.aspx
-
hi,
http://www.scottgu.com/blogposts/slbeta1apps/diggsample.zipyou can start with this demo.
and you will find a series artical for beginner here http://weblogs.asp.net/scottgu/archive/2008/02/22/first-look-at-silverlight-2.aspx
-
hi,
check this thread
http://silverlight.net/forums/t/22080.aspx