zoukankan      html  css  js  c++  java
  • xaml实现无边框窗口

    <Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="MainWindow" Height="359.091" Width="535.227" AllowsTransparency="True" WindowStyle="None">


    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="150" />
    <ColumnDefinition Width="auto"/>
    <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <StackPanel >

    </StackPanel>
    <GridSplitter Grid.Column="1" HorizontalAlignment="Center" Width="1" Background="Black" ShowsPreview="True" />
    <Label Grid.Column="2" BorderBrush="Black" />

    </Grid>
    </Window>

    为自绘的标题栏添加MouseLeftButtonDown事件,并在事件中写入this.DragMove();即可实现窗口自由拖放功能。

  • 相关阅读:
    c++静态变量和静态函数
    c++抽象类和纯虚函数
    二维矩阵的算法
    JS操作CSS样式
    DOM
    JavaScript学习
    CSS样式表介绍
    HTML 学习整理
    ADO.Net知识总结
    数据库表查询高级 触发器游标等
  • 原文地址:https://www.cnblogs.com/Roarsun/p/10998791.html
Copyright © 2011-2022 走看看