Advanced Forum Search Results
-
Is this issue happening when in full screen mode, or all the time? Keyboard events behaves differently when in fullscreen mode so that things can't be faked/hijacked fooling the user into thinking they are doing something else.
cheers,
Stephen
-
Are you using Mode=TwoWay in your binding? Bindings default to one way. You can also try setting a breakpoint on your setter to see if the value is being passed back to what you are binding to.
cheers,
Stephen
-
Hi Aaadi,
All of the memory leaks I've come across so far have been related to event handlers that have not been unhooked before the usercontrol is removed. I'm sure there are others but this might be your issue.
Where I came across it was when I had a usercontrol in a datatemplate for a list. The usercontrol had an event handler being ...
-
Hi Wishstar,
Have a look at the themes in the Silverlight toolkit, there are some storyboards in there with some really cool mouseover effects. Shinyred comes to mind, the mouseover has a delay so that the highlight isn't instant, it fades in and out.
You can also create custom controls where the behaviour and the visuals are seperate. ...
-
Have you tried using Fiddler2 to see what the error is? perhaps its a server-side issue?
Fiddler is the first thing I go for when I want to see what's going on.
cheers,
Stephen
-
Sure. List is a collection. You can find it in the namespace System.Collections.Generic.
It basically returns a collection of items of the type in the .
cheers,
Stephen
-
You could try putting this into your ViewModel class; (almost the same as the link that was referenced in other reply) public partial class Page : UserControl {
public Page() {
InitializeComponent();
Loaded += new RoutedEventHandler(Page_Loaded);
}
void Page_Loaded(object ...
-
Hi,
I'm trying to set the foreground colour, or font colour for the selected item in a listbox or combobox to be different to the unselected item. The problem i'm getting is that the font colour does not look good when the contrast between the selected and unselected background is too great. in otherwords a dark font on a light ...
-
I think I found a work around for this problem.
When I apply the theme in Xaml the listboxitems don't show up. If I apply the theme from codebehind then they do.
example of the code that worked for me. string itemThemeXamlPath = @"SilverlightAssembly;component/themes/bubblecreme.xaml";
Uri uri = new Uri(itemThemeXamlPath, ...
-
Hi Bryan,
I'm hit the exact same issue. Drove me nuts, I thought it was something I was doing wrong. It was hard enough trying to get it working with all the old SL examples around. Seems like it is a bug in the latest toolkit.
Have you found a work around?
cheers,
Stephen