1

我正在制作图书馆管理软件。这是屏幕截图: 截屏

我已经实现了诸如将一本书拖到删除图标中以删除该书的功能。但是有两个障碍:

  1. DataPackageOperation 只有四种可能性:复制、链接、无移动。因此,在四个之后,很难区分这本书是放在哪个 AppBarButton 上的。
  2. 我计划向 CommandBar 添加更多项目。但是只有四种可能的操作

我需要一种方法来为用户提供关于当前拖动的书是哪个 AppBarButton 的自定义反馈。DataPackageOperation 只包含四个。其中,不能使用“无”(因为它会令人困惑)。有没有办法提供这种反馈?

4

1 回答 1

2

我需要一种方法来给用户一个自定义反馈,即当前拖动的书是哪个 AppBarButton

您可以通过自定义拖动 UI 向用户提供自定义反馈。以下代码来自XamlDragAndDrop官方代码示例。

private void TargetTextBox_DragEnter(object sender, Windows.UI.Xaml.DragEventArgs e)
{
    /// Change the background of the target
    VisualStateManager.GoToState(this, "Inside", true);
    bool hasText = e.DataView.Contains(StandardDataFormats.Text);
    e.AcceptedOperation = hasText ? DataPackageOperation.Copy : DataPackageOperation.None;
    if (hasText)
    {
        e.DragUIOverride.Caption = "Drop here to insert text";
        // Now customize the content
        if ((bool)HideRB.IsChecked)
        {
            e.DragUIOverride.IsGlyphVisible = false;
            e.DragUIOverride.IsContentVisible = false;
        }
        else if ((bool)CustomRB.IsChecked)
        {
            var bitmap = new BitmapImage(new Uri("ms-appx:///Assets/dropcursor.png", UriKind.RelativeOrAbsolute));
            // Anchor will define how to position the image relative to the pointer
            Point anchor = new Point(0,52); // lower left corner of the image
            e.DragUIOverride.SetContentFromBitmapImage(bitmap, anchor);
            e.DragUIOverride.IsGlyphVisible = false;
            e.DragUIOverride.IsCaptionVisible = false;
        }
        // else keep the DragUI Content set by the source
    }
}

在此处输入图像描述

于 2018-10-18T07:06:12.507 回答