English 中文(简体)
How to exit full-screen mode in Expression Blend
原标题:

Somehow, Expression Blend has entered full-screen mode (no window chrome), but I can still minimize/maximize/restore/move through the taskbar button. I don t see any menu options for full-screen mode, and the normal keyboard shortcuts don t work (F11, Alt-Enter).

I m not sure how this happened, but I would sorely love to get my chrome back to make interacting with the window easier.

最佳回答

After not even trying to use Blend for my application for a really long time, it turns out it was my own fault to begin with. I had created a custom chrome control that would find its parent Window and remove the frame. I wasn t checking design mode, so whenever my control was instantiated by blend, it would remove all the chrome from the window :).

问题回答

I ve never seen a Full-screen mode in Blend. Maybe you accidentally hit Tab or F4 and did an Auto-hide to all of the panels?

you can press ESC button

in code use:

Application.Current.Host.Content.IsFullScreen = false; 

check this





相关问题
split video and keep it running [closed]

any one can give me a hind how to split video (and can be played in separeat parts) ,by split here I mean to split it to 4 parts for example and each part can be running (paying)

Triggering animation inside a control

I am doing some transition animation using WPF and Blend 3. I have two outer usercontrols which is what I want the transition effect to happen on. Using Blend I can make this effect. The problem is ...

How to exit full-screen mode in Expression Blend

Somehow, Expression Blend has entered full-screen mode (no window chrome), but I can still minimize/maximize/restore/move through the taskbar button. I don t see any menu options for full-screen mode,...

Display images from folder with Silverlight(Blend)

I have a network directory that has a dump of all employee pics here at our company. The images are named FirstnameLastinitial.jpg. I ultimately am trying to build a photo browser of these pics in ...

热门标签