Advanced Forum Search Results
-
I have the same problem with EntityFramework and RIA Services, any solutions?
-
Ok here is my custom style:
<Style x:Key="styleButtonTopMenu" TargetType="Button">
<Setter Property="Width" Value="140"/>
<Setter Property="VerticalAlignment" Value="Stretch"/>
...
-
It's currently in my App.xaml resources sections. I tried putting it in my theme.xaml file but the problem remains the same.
-
Hi all,
I have a application using the theming functionality of the toolkit.
I'm trying to set a custom style on a button like so:
<Button Style="{StaticResource MyCustomStyle}"/>
I don't want this button to get the theme style. However when I run the app my custom style is replaced by the default style for the Button ...
-
Figured out my problem, I needed to add the supported cultures in my csproj, everything works fine now.<SupportedCultures>en;fr</SupportedCultures>
-
I think I might actually have found the issue. It seems to be related to having Resource in the name of the project.
I tried with a different name and it worked.
Now I have another issue, there are multiple dlls generated when you compile the project (one per culture) but the only one ending up in the xap is the default culture...
-
I'm having the same exact issue.
Did you find a solution?
-
I have the same exact problem, I managed to reload the list calling DomainDataSource.Load but you will lose the currently selected item which is another problem...
-
Thanks a lot for the workaround, hopefully this will get fixed in the release.
-
I don't know if it will help but here is the way I handle this problem:
I define a stack of load actions:
private Stack<Action> _loadActions = new Stack<Action>();
I add load actions to my stack, subscribe to the Loaded event and start loading:
private void Application_Startup(object sender, ...