C#使Usercontrol可拖动

时间:2016-08-23 07:41:20

标签: c# wpf scheduler appointment

目前我正在为我的应用程序开发Scheduler-Control。调度程序是具有指定列和行的网格。对于我的约会,我使用此代码创建了一个Usercontrol:

<UserControl x:Class="Testprokekt.Appointment"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:local="clr-namespace:Testprokekt"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<Border x:Name="border" BorderBrush="Black" BorderThickness="1">
    <StackPanel x:Name="contentPanel">
        <TextBlock x:Name="titleBlock" TextWrapping="Wrap" FontWeight="Bold"/>
        <TextBlock x:Name="textBlock" TextWrapping="Wrap" HorizontalAlignment="Left"/>
    </StackPanel>
</Border>
</UserControl>

这完美无缺,我没有遇到任何问题。 但现在我希望能够在Scheduler(Grid)中拖动这些约会。有办法吗?

调度程序看起来像这样:每个单元格都是网格单元格。 enter image description here

0 个答案:

没有答案