Advanced Forum Search Results
-
Mine went away, but I have no idea why as I stopped checking it for awhile. I haven't heard any solutions from anyone.
-
Could you share that code? I can't get it to work and I'm guessing I'm missing something.
Thanks.
-
What?
-
If I access my website, either through VS Dev Server or hosted IIS, change the Splash.xaml, but not the app, and try to access the website, then I get a blank screen. I think I'm seeing this 100% reproducible. It's not a likely scenario, but it's broken.
The more likely scenario is that nothing has changed and I just hit ...
-
I found a way to do this using "RelativeSource TemplatedParent" and the VisualTreeHelper. It's a hack and ugly, but it works.
-
I am a many to many relationship between say Albums and Genres.
Let's say I am data bound to an album and want to use an ItemsControl to list out the Genres. Now, let's say the DataTemplate for the ItemsControl is a HyperlinkButton and I want to pass Album info as well, possibly for a link back. It would look something like ...
-
You could detect that you are on the same page (say /Home), redirect to the /Home/Redirect. Even if they are the same page, the mapping would think they are different pages and thus reload.
-
[quote user="meidianto"]the first space will still miss[/quote]
It doesn't just miss the first space, it toggles the button (watch the coloring of the button change) on the first space after each letter/word. Toggling cannot happen with a keystoke as this does. Also, it can't fail after every word.
-
Right, but a space doesn't get put into the TextBox.
-
I have a TextBox inside a Button. It sounds weird, but I'm using it like the Expander control (with some differences).
I can type fine in the TextBox untilI I type Enter or Space. Those toggle the button, making the TextBox disappear. I can't figure out how to fix this. I've tried event handlers on Button KeyDown and KeyUpThe & ...