私はWPFを初めて使用しますが、私を責めないでください;)
XAMLには次の部分があります。
<ListView x:Name="listView" IsEnabled="{Binding PropertiesEnabled}" Margin="0"
BorderThickness="0" DragDrop1:DropTargetBehavior.IsDropTarget="true"
MinHeight="300" DragDrop1:DropTargetBehavior.DropType="{x:Type UIP:DataItemViewModel}"
ItemsSource="{Binding dataItemCollection}"
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
AllowDrop="True" KeyDown="listView_KeyDown" MouseUp="listView_MouseUp"
UseLayoutRounding="False" VerticalContentAlignment="Center"
MaxWidth="Infinity" MaxHeight="1000" Grid.Column="1"
HorizontalContentAlignment="Stretch">
ビュークラスの背後にあるコードでは、listViewと、IsEnabled、Margin、ItemsSourceなどのほとんどのプロパティと属性にアクセスできます。ただし、DragDrop1に関しては、リストされていません。
一部のイベントはプログラムで起動する必要があるため、DropTargetBehaviorタイプのDragDrop1への参照を取得する必要がある理由。
DragDrop1が見つからない原因は何でしょうか?どうすればそれを参照できますか?
乾杯。