博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WINFORM跟随WPF窗体移动
阅读量:5298 次
发布时间:2019-06-14

本文共 2345 字,大约阅读时间需要 7 分钟。

<Window x:Name="mainWindow1" x:Class="WpfApplication9.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    Title="MainWindow"  Width="984" Height="747" LocationChanged="mainWindow1_LocationChanged"  Loaded="mainWindow1_Loaded" 
        Background="Transparent" OpacityMask="White" AllowsTransparency="True" WindowStyle="None" Cursor="Arrow"
       WindowStartupLocation="CenterScreen"  
        >
    
    <Grid Margin="0,0,0,-121"    Loaded="Grid_Loaded" >
        <Image x:Name="image1" Stretch="Fill" Source="main-bg.png" StretchDirection="Both" Width="984" Height="747" MouseDown="image1_MouseDown" Margin="0,0,0,121" />
        <Button x:Name="btn1" Content="X" HorizontalAlignment="Left" VerticalAlignment="Top" Width="58" Margin="693,333,0,0" Click="Button_Click" Height="28" RenderTransformOrigin="-0.698,0.511"/>
        <Rectangle x:Name="rect1" Fill="#FFF4F4F5" HorizontalAlignment="Left" Height="222" Margin="235,377,0,0" Stroke="Black" VerticalAlignment="Top" Width="516"/>
        <Label x:Name="lbl1" Content="Label" HorizontalAlignment="Left" Margin="102,246,0,0" VerticalAlignment="Top" Width="196"/>
        <Button Content="-" HorizontalAlignment="Left" Height="28" Margin="641,333,0,0" VerticalAlignment="Top" Width="47" Click="Button_Click_1"/>
    </Grid>
</Window>
namespace WpfApplication9
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
           
        }
        private void Button_Click(object senderRoutedEventArgs e)
        {
            Close();
        }
 
        Form1 frm1 = new Form1();
        private void Grid_Loaded(object senderRoutedEventArgs e)
        {
            MoveFuc(); 
        }
        private void MoveFuc()
        {
            frm1.Left = (int)mainWindow1.Left + (int)rect1.Margin.Left;
            frm1.Top = (int)mainWindow1.Top + (int)rect1.Margin.Top;
            frm1.Width = (int)rect1.Width;
            frm1.Height = (int)rect1.Height;           
        }
        private void mainWindow1_LocationChanged(object senderEventArgs e)
        {
            MoveFuc();
        }
   
        private void mainWindow1_Loaded(object senderRoutedEventArgs e)
        {
            frm1.Show();
        }
        private void image1_MouseDown(object senderMouseButtonEventArgs e)
        {
            DragMove();
        }
        private void Button_Click_1(object senderRoutedEventArgs e)
        {
            mainWindow1.WindowState = System.Windows.WindowState.Minimized;
            frm1.WindowState = System.Windows.Forms.FormWindowState.Minimized;
        }
 
    }
}

附件列表

 

转载于:https://www.cnblogs.com/xe2011/p/3758652.html

你可能感兴趣的文章
BootStrap2学习日记2--将固定布局换成响应式布局
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
Spark的启动进程详解
查看>>
使用命令创建数据库和表
查看>>
数据库的高级查询
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
Python Web框架Django (零)
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>