WPF - 自定义饼图菜单 - MenuItem图像

时间:2014-04-04 11:48:21

标签: c# wpf menu

是否有人可以帮助我,为本教程的每个MenuItem添加一个图像:

http://www.codeproject.com/Articles/522343/A-Pie-Menu-for-WPF

我不知道,怎么做。

2 个答案:

答案 0 :(得分:0)

试试这个:

</MyNamespace:PieMenu.BitmapEffect>
  <Image Source="Items\1.png" Width="50" Height="50"/>
  <Image Source="Items\2.png" Width="50" Height="50"/>
  <Image Source="Items\3.png" Width="50" Height="50"/>
  <Image Source="Items\4.png" Width="50" Height="50"/>
  <Image Source="Items\5.png" Width="50" Height="50"/>
</MyNamespace:PieMenu>

答案 1 :(得分:0)

我有类似的问题。我最终玩了PieMenuItem的header属性。这样的事情会起作用。

    if (menu_item.Header as FrameworkElement != null)
    {
        FrameworkElement header = (FrameworkElement)menu_item.Header;

        // Create the visual brush based on the UserControl
        VisualBrush headerVisualBrush = new VisualBrush(header);
        headerVisualBrush.Stretch = Stretch.Uniform;

        // Draw using the visual brush in the rect
        double contentSize = distance / 2;
        drawingContext.DrawRectangle(headerVisualBrush, null, new Rect(center.X - contentSize / 2.0, center.Y - contentSize / 2.0, contentSize, contentSize));
  }
  else if (menu_item.Header as String != null)
  {

  }