Wix工具集中的无边框窗口

时间:2017-08-09 05:46:21

标签: wix

我正在使用wix创建一个Windows安装程序,我希望它是无边界的。这可能吗?如果是这样,我如何在窗口上创建一个可以拖动它的区域?

1 个答案:

答案 0 :(得分:-1)

是的。这是可能的。看看这个。

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication1"
    mc:Ignorable="d"
    Height="350" Width="525" WindowStyle="None" ResizeMode="NoResize" >
<Grid >
    <Rectangle Fill="Gray" MouseDown="Rectangle_MouseDown" />
    <Grid Margin="10" Background="LightGray">
     ---your window elements go here---
    </Grid>
</Grid>

在Rectangle元素内部,鼠标按下事件处理程序将代码拖动窗口。因此,如果您单击矩形,即内部网格周围的区域,您将能够拖动窗口。

private void Rectangle_MouseDown(object sender, MouseButtonEventArgs e)
    {
        if (e.ChangedButton == MouseButton.Left)
            this.DragMove();
    }