首页 > 其他 > 详细

制作自定义样式的窗口

时间:2014-05-25 20:39:05      阅读:354      评论:0      收藏:0      [点我收藏+]

不使用windows自带的窗口样式,使用自定义的客户区,

bubuko.com,布布扣
<Window xmlns:my="clr-namespace:MiniFileTransferClient.Presentation.WPF.UILogic.ShowPanels"  x:Class="MiniFileTransferClient.Presentation.WPF.MiniFileTransferViewer"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MiniFileTransferViewer"  WindowStyle="None"  AllowsTransparency="True"
        MouseLeftButtonDown="Window_MouseLeftButtonDown"  StateChanged="Window_StateChanged" Height="530" Width="395"
        Background="Transparent">
    <Border   Height="530" Width="395"  BorderBrush="Gray" BorderThickness="0"   CornerRadius="5,5,5,5">
        <Border.Background>
            <ImageBrush ImageSource="/MiniFileTransferClient.Presentation.WPF;component/Images/zhujiemian.png"/>
        </Border.Background>
    </Border>
</Window>
bubuko.com,布布扣

其中WindowStyle="None"、AllowsTransparency="True" 、Background="Transparent"这三个属性都是要设定的。由于现在默认的非客户区没有了,按下鼠标是不能拖动窗口的,必须在设定鼠标左键按下时的情况,就有了MouseLeftButtonDown="Window_MouseLeftButtonDown" 事件对应的代码:

                private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
                {
                        this.DragMove();
                }

制作自定义样式的窗口,布布扣,bubuko.com

制作自定义样式的窗口

原文:http://www.cnblogs.com/goxmpx/p/3751329.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!