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

  • 相关阅读:
    如何优雅的,灵活的把想要展示的数据传给前端
    利用AES算法加密数据
    Swing-布局管理器应用--WIN7上计算器的UI实现
    Swing-GridBagLayout用法-入门
    Swing-setMaximumSize()用法-入门
    Swing-setOpaque()用法-入门
    Swing-setBounds()用法-入门
    Swing-setAlignmentX()用法-入门
    Swing-setBorder()用法-入门
    Swing-布局管理器之GridLayout(网格布局)-入门
  • 原文地址:https://www.cnblogs.com/Roarsun/p/3470404.html
Copyright © 2011-2022 走看看