zoukankan      html  css  js  c++  java
  • WPF中的拖放1

    实现了WPF的不同层级间的元素之间的拖放,例子虽小却很经典,引申一下也许可以实现类VS界面的浮动依靠面板。

    拖放前:

    拖放后:

    代码如下:

    <Window x:Class="WpfApplication8.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="MainWindow" Height="350" Width="525">
        <Grid>
            <Canvas Margin="0,0,216,0" Name="canvas1" Background="Crimson" AllowDrop="True" Drop="C1Drop">
                <Rectangle Height="100" Margin="10,10" Name="rectangle1"  Width="100" Fill="Azure" PreviewMouseMove="RectMove" />
            </Canvas>
            <Canvas HorizontalAlignment="Right" Margin="0,0,0,0" Name="canvas2" 
                    Width="199" Background="DarkSalmon" AllowDrop="True" Drop="C2Drop"/>
        </Grid>
    </Window>
            private void C1Drop(object sender, DragEventArgs e)
            {
                if (e.Data.GetDataPresent(typeof(Rectangle)))
                {
                    string str = ((Canvas)(this.rectangle1.Parent)).Name.ToString();                
                    if(str.Equals("canvas2"))
                    {
                        Rectangle rect = (Rectangle)e.Data.GetData(typeof(Rectangle));
                        this.canvas2.Children.Remove(rect);
                        this.canvas1.Children.Add(rect);
                    }
                  
                }
            }
            private void C2Drop(object sender, DragEventArgs e)
            {
                if (e.Data.GetDataPresent(typeof(Rectangle)))
                {
                    string str = ((Canvas)(this.rectangle1.Parent)).Name.ToString();
                    if (str.Equals("canvas1"))
                    {
                        Rectangle rect = (Rectangle)e.Data.GetData(typeof(Rectangle));
                        this.canvas1.Children.Remove(rect);
                        this.canvas2.Children.Add(rect);
                    }
                }
            }
            private void RectMove(object sender, MouseEventArgs e)
            {
                if (e.LeftButton == MouseButtonState.Pressed)       // 如果鼠标左键被按下
                {
                    DataObject data = new DataObject(typeof(Rectangle), this.rectangle1);
                    DragDrop.DoDragDrop(this.rectangle1, data, DragDropEffects.Move);
                }
            }

    感觉博主苏扬的分享:http://msdn.microsoft.com/zh-cn/ff685657.aspx

  • 相关阅读:
    在软硬件系统总体架构设计
    WCF服务重构
    步步为营 .NET 设计模式学习笔记 四、Singleton(单例模式)
    我爱编程
    对.NET初学者两个问题的个人见解
    郁闷的一本书《深入解析Windows操作系统》
    欢迎使用 PDF.NET 数据开发框架【转载】
    使用ASP.NET MVC2+PDF.NET 构建一个简单的新闻管理程序
    不使用DalFactory和IDAL,支持多种数据库应用
    Web开发人员非常有用的手册
  • 原文地址:https://www.cnblogs.com/Roarsun/p/3470404.html
Copyright © 2011-2022 走看看