Advanced Forum Search Results
-
Hi, thanks for the help!
Its an odd scenario... When I first load the application, the Windows key does work, when I use: if ((Keyboard.Modifiers & ModifierKeys.Windows) == ModifierKeys.Windows)
{
if (e.Key == Key.D1)
{
//hotkey actions
}
} That does work. However, if I click on a control inside ...
-
I have an application where I have hotkeys setup, such as pressing Windows+1 to open a popup. Right now I have the event handler set up for the LayoutRoot. However, when a user clicks inside a datagrid (or any other control), the focus is lost from the LayoutRoot, which means that the keydown event will not fire. How can I make it so no matter ...
-
Great resources! Thanks a ton billsm
-
Thanks for all the helpful thinks billsm! I'll look through all of this when I get a chance. I appreciate everything.
-
Sorry if the explanation doesn't make sense... I'll try to organize my thoughts a little better. I am using tabs in Silverlight (not the tabs in the browser), and each tab has a frame in it. For example, let's say there are five tabs open. When I click a link, I want a page to load only in the frame of the tab that is ...
-
Thanks for the help billsm. Unfortunately I don't think the mapping is the problem. I can load pages into a frame correctly, just not when I have multiple tabs open, because they each have a frame on them. I have a top menu outside of the tabs and the frame, and when a link is clicked from that menu, I want a page to load into the selected ...
-
Hello,
I am trying to make an application that is almost like a browser in terms of tabbed browsing. For the application the best way to navigate is with the navigation framework. However, I am having trouble incorporating that with the tabs. My issue is when I click a link, it loads the new page into the frames of all of the ...
-
That worked perfectly! I did have the From property set, which apparently was the problem. Thank you for your help!
-
[scrollleft] | content | [scrollright]
That's a basic diagram of the setup. Hovering on the left plays a storyboard that scrolls the content (inside a container) to the left. The right button plays a storyboard that scrolls the content to the right. If a user leaves the button before the content is scrolled to the edge, ...
-
I have a two storyboards, one that plays normal and the other reverses it. The storyboards target property is a simple translate to the left and right. That works fine for me. I would like to set up a design where a user hovers over a button on the right side of the screen, so the content scrolls to the right. The user leaves the button, and ...