The window-chrome tag has no wiki summary.
2
votes
1answer
75 views
+50
Border Margin in Window template doesn't have any effect when used with WindowChrome
I was checking out the WindowChrome class in System.Windows.Shell library (v 3.5.41019.1). When I try to create a Window template, the margin of the Border element in the template seems to have no ...
1
vote
0answers
101 views
Rendering “behind” the window chrome control boxes
I've got a style which removes the usual window chrome and replaces it with aero-effect glass (Code at the bottom).
If you look at the indicated line, I'm using a black box to darken the glass but ...
0
votes
0answers
40 views
How do you take a WPF chrome and apply it to a Flex 4 app?
I don't have a lot of time to waste on reinventing the wheel through a series of Flex modules. Basically I just need to try to create an AIR app through Flex 4 whose chrome does not include the ...
1
vote
1answer
250 views
Wpf custom window TabControl-like template
I'd like to create a CustomWindow class that behaves this way:
1. Non-client area of window is utilized too, TabControl's tabs are present instead of window title like in Google Chrome.
2. Tabs are ...
0
votes
1answer
217 views
C++ Win32 Design my Window [duplicate]
Possible Duplicate:
C++/WIN32 A professional looking application - is it really possible?
I'm not talking about opening a resource file, (.rc) and make my buttons, and etc ..
I'm talking ...
0
votes
1answer
239 views
How to enable window chrome by using C# code and not XAML?
So I am using the WPFShell to apply chrome to a custom window. I have learned from this article that in order to use it, I have to reference the Microsoft.Windows.Shell library and use this XAML code:
...
0
votes
0answers
101 views
WindowChrome confusion regarding resources and usage
I understand that there's WPF Chrome here which has been replaced by WPFShell here. And then there's a blog post here saying that the WPFShell features are found in the System.Windows.Shell namespace ...
0
votes
1answer
412 views
System Close Button surfaces in custom window chrome when ResizeMode is set to NoResize
I have implemented a custom window chrome using the WPF Shell Integration Library (http://archive.msdn.microsoft.com/WPFShell).
The Chrome works until I set the ReSizeMode to NoResize. Then if hover ...
2
votes
1answer
4k views
How to hide Title bar in WPF Ribbon Window (Aero enabled) without hidden control box?
I currently use WPF Ribbon Window and enable Aero in current window like the following photo. I like to hide title that is "Pattern Tester" because there is not enough of space to show it. But I still ...
2
votes
2answers
297 views
Controls that stick out of a WPF window?
Just like the Fluent.RibbonWindow, I need controls to stick on my window's caption/borders.
I tried extracting the RibbonWindow from the class, but I always run into trouble. I just can't do it...
Can ...
1
vote
1answer
472 views
Replicating standard system menu with WindowChrome?
When using WindowChrome (downloadable here) to customize the nonclient area of a window, a natural starting point is to make a title bar that looks and acts identical to a standard title bar. This ...
1
vote
2answers
4k views
WPF: Drop shadow on borderless window without custom chrome
Im struggling with drop shadow on WPF-windows with WindowStyle=None and ResizeMode=NoResize. Is there any good alternative to using a DropShadow-effect on the window-content? I have tried WindowChrome ...
7
votes
2answers
3k views
How to use WindowChrome without Windows Aero glass effects in wpf, black boarder
I'm trying to customize a window border by using the WindowChrome class. Without Windows Aero glass effects. As expected I end up with a black boarder.
But i also end up witout caption buttons
From ...
2
votes
1answer
464 views
How to account for frame size when handling WM_GETMINMAXINFO
I have a WPF app that handles WM_GETMINMAXINFO in order to customize the Window chrome and still honor the system taskbar. That is, when you maximize the window on the monitor with the taskbar on it, ...
6
votes
2answers
1k views
WPF: Custom window, standard min/max/close buttons
I would like to create a custom WPF window (WindowStyle = None, AllowsTransparency = True). However, I would like the min/max/close buttons to look identical to those on standard windows. Is this ...
2
votes
2answers
526 views
C/C++/C#: how to force repaint of window chrome on windows 7?
My application has a standard top level window for the application. I need to force a repaint of the window chrome (otherwise known as the non-client area of the window). I do not care if the client ...
0
votes
3answers
2k views
Customly chromed Windows in wpf
I've tried creating a customly chromed window in wpf using WindowStyle None, and AllowsTransparency True, however, when I maximize the window it covers the entire screen (and goes beond it's edges, it ...