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

  • 相关阅读:
    ASP.NET HttpRuntime.Cache缓存类使用总结
    ASP.NET MVC自定义AuthorizeAttribute篇知识点讲解—登录限制
    Echarts图表控件使用总结2(Line,Bar)—问题篇
    数据库查询实例(包含所有where条件例子)
    php file_get_contents读取大容量文件方法
    如何给mysql用户分配权限
    dedecms {dede:php}标签用法介绍
    js获取字符串最后一个字符代码
    CSS3选择器之学习笔记
    SQL中实现SPLIT函数几种方法
  • 原文地址:https://www.cnblogs.com/Roarsun/p/3470404.html
Copyright © 2011-2022 走看看