vote up 5 vote down star

I want to show a chromeless modal window with a close button in the upper right corner. Is this possible?

flag

44% accept rate

4 Answers

vote up 6 vote down check

You'll pretty much have to roll your own Close button, but you can hide the window chrome completely using the WindowStyle attribute, like this:

<Window WindowStyle="None">

That will still have a resize border. If you want to make the window non-resizable then add ResizeMode="NoResize" to the declaration.

link|flag
vote up 5 vote down

The WPF SDK Team posted a EXCELLENT article about chromeless windows available here: http://blogs.msdn.com/wpfsdk/archive/2008/09/08/custom-window-chrome-in-wpf.aspx

This is a MUST read!!!

link|flag
+1 - what a great article! – Matt Hamilton Jul 23 at 7:58
vote up 5 vote down

Check out this blog post on kirupa.

alt text

link|flag
Great article :D – nyxtom Nov 25 at 23:19
vote up 0 vote down
<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" WindowStyle="None" ResizeMode="NoResize">
    <Button HorizontalAlignment="Right" Name="button1" VerticalAlignment="Top" >Close</Button>
</Window>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.