目前我正在为我的应用程序开发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)中拖动这些约会。有办法吗?