Advanced Forum Search Results
-
When you say fish aquarium, do you mean a screen saver or an application with a video?
I recommend you review the videos under the Learn tab. Do you know anything about XAML? Are you a designer or a programmer?
Basically we need more information in order to help you.
-
Okay. I was looking at your XAML and you are referencing the image in the Images folder. That folder does not exist in the dll. Change the control to have the images in the same level as the dll and change the xaml. Hopefully that will fix it.
If not, then try copying the image to the ClientBin folder for the project.
-
I have a blog I just started on Silverlight Development and I was wondering if my blog can be added to the community blog rss? My blog is:
http://cid-2d36359776cf2591.spaces.live.com/category/Silverlight+Development/feed.rss
-
So the dll and the xap are the same name? Can you change the name of the dll to something different and change the URI in the above code to the new dll name? See if that solves it.
-
The way to fix this for all new projects is to go to the Visual Studio Command Prompt window and type: devenv /setup
This will redo the intial configuration for Visual Studio and prompt you for the type of development environment settings you want. When it does choose C# Developer setting.
This should solve the ...
-
If you create a WPF project and copy the XAML file into it. Does it work? Just trying to verify if the IDE can not read any XAML files at all.
Also, can you post the error information you get when you try to open a xaml file?
-
Do you have the image in Visual Studio set to a resource for the build? Is it getting built into the dll or is it in the debug folder with the dll?
-
I believe that is functionality you can find in Expression Encoder. Then when you are displaying the video in a Silverlight application the links should work.
-
Make sure you also go to the app.xaml to use the new starting page name and look at the silverlight.js file. This will cause errors if you do not change all the places depending on how radical you get with the rename.
-
Another place to look is in the events at the lowest level of the hierarchy you can set the e.handled = true to prevent the control event from bubbling up the control visual tree which can override what you did.