Advanced Forum Search Results
-
I was having the same problem.
I was migrating a Silverlight 2 App into Silverlight 3.
My application was having WCF Service references, when I was converting the project with the automatic conversion wizard, all was fine.
When I try to compile my project same errors as describe up in this topic.
The solution, for me, was to right click on the ...
-
Hi octapi,
What's the type of the objects in AttributeValues ?
Did you try this ?
txtEyeColor.ItemsSource = from a in CodeTable.AttributeValues ...
-
Hi Status,
Maybe a proxy cache or Firefox Cache ?
Did you clear the cache of Firefox ?
Are you using asmx web services or WCF web services ?
and old xap cached by Firefox can contains old references to the service.
-
Hi
you can use html bridge to call Some Javascript Function that CAN redirect to thé given page
-
Hi ccapinha69
What sort of path are ThumbNail and FileName properties ?
Are your images and / or video in the ClientBin folder ? or they're from internet url ?
Are you in debug mode in visual studio with url like http://localhost:nnnn ? or hosted in IIS ?
Your application can work if the web site is hosted in ...
-
Hi Amanda,
Here is the complete code of the user control
<UserControl x:Class="Test.TabControl"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
-
Hi Amanda,
My Style in beta2 :
<Style x:Key="MyTabControlStyle" TargetType="local:TabControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:TabControl">
<Grid x:Name="TabControlRoot">
<StackPanel ...
-
Hi all,
I have updated my application for the release and the last issue I'm experiencing is a style with the header of the tabcontrol
in beta I was having a ScrollViewer encapsuling the TabPanel in the ControlTemplate of the TabControl (to scroll the header when larger than TabControl)
In RC0 this style no longer works and after an update ...
-
Hi all
I've found the solution
If I use the style defined in App.xaml with a reference to System.Windows.Controls in the TargetType
ex : <Style x:Key="MyTabControlStyle" TargetType="controls:TabControl">
With a refrence to the dll like that : ...
-
Hi all,
I am trying to migrate my SL2 Beta2 app into RC0
I have made all Breaking Changes
My last issue is a style that hides my TabControl but there no reason ...
In Beta2 this style was working fine
I try to remove some parts, I can't understand why the style is incorrect.
Here is the xaml code :
<Style ...