WPF 实现 Gitee 气泡菜单(一)

 WPF 实现 Gitee 气泡菜单(一)

气泡菜单(一)

作者:WPFDevelopersOrg

原文链接:    https://github.com/WPFDevelopersOrg/WPFDevelopers

  • 框架使用大于等于.NET40

  • Visual Studio 2022;

  • 项目使用 MIT 开源许可协议;

a130051d15e5b9c44bc84c4bbb06b36f.png
  • 需要实现气泡菜单需要使用Canvas画布进行添加内容;

  • 但是为了使用方便需要在ListBox中使用Canvas做为ItemsPanelTemplate

  • 使用时只需要在ListBox中添加ListBoxItem就行;

1) BubbleControl.cs 代码如下;

  • BubbleControl.cs 继承 Control创建依赖属性Content

  • 根据Content集合循环随机生成WidthHeight在生成SetLeftSetTop 需要判断重叠面积不能超过当前面积的百分之六十~九十;

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Shapes;
using WPFDevelopers.Helpers;namespace WPFDevelopers.Controls
{[TemplatePart(Name = BorderTemplateName, Type = typeof(Border))]public class BubbleControl : ContentControl{private const string BorderTemplateName = "PART_Border";public new static readonly DependencyProperty ContentProperty =DependencyProperty.Register("Content", typeof(ObservableCollection<BubbleItem>), typeof(BubbleControl),new PropertyMetadata(null));public new static readonly DependencyProperty BorderBackgroundProperty =DependencyProperty.Register("BorderBackground", typeof(Brush), typeof(BubbleControl),new PropertyMetadata(null));private Border _border;private double _bubbleItemX, _bubbleItemY;private Ellipse _ellipse;private int _number;private readonly List<Rect> _rects = new List<Rect>();private RotateTransform _rotateTransform;private double _size;private const int _maxSize = 120;static BubbleControl(){DefaultStyleKeyProperty.OverrideMetadata(typeof(BubbleControl),new FrameworkPropertyMetadata(typeof(BubbleControl)));}public BubbleControl(){Loaded += delegate{double left = 0d, top = 0d;for (var y = 0; y < (int)Height / _maxSize; y++){double yNum = y + 1;yNum = _maxSize * yNum;for (var x = 0; x < (int)Width / _maxSize; x++){if (_number > Content.Count - 1)return;var item = Content[_number];if (double.IsNaN(item.Width) || double.IsNaN(item.Height))SetBubbleItem(item);_bubbleItemX = Canvas.GetLeft(item);_bubbleItemY = Canvas.GetTop(item);if (double.IsNaN(_bubbleItemX) || double.IsNaN(_bubbleItemY)){double xNum = x + 1;xNum = _maxSize * xNum;_bubbleItemX = ControlsHelper.NextDouble(left,xNum - _size  * ControlsHelper.NextDouble(0.6,0.9));var _width = _bubbleItemX + _size;_width = _width > Width ? Width - (Width - _bubbleItemX) - _size : _bubbleItemX;_bubbleItemX = _width;_bubbleItemY = ControlsHelper.NextDouble(top,yNum - _size * ControlsHelper.NextDouble(0.6, 0.9));var _height = _bubbleItemY + _size;_height = _height > Height ? Height - (Height - _bubbleItemY) - _size : _bubbleItemY;_bubbleItemY = _height;}Canvas.SetLeft(item, _bubbleItemX);Canvas.SetTop(item, _bubbleItemY);left = left + _size;if (item.Background is null)item.Background = ControlsHelper.RandomBrush();_rects.Add(new Rect(_bubbleItemX, _bubbleItemY, _size, _size));_number++;}left = 0d;top = top + _maxSize;}};}public new ObservableCollection<BubbleItem> Content{get => (ObservableCollection<BubbleItem>)GetValue(ContentProperty);set => SetValue(ContentProperty, value);}public Brush BorderBackground{get => (Brush)this.GetValue(BorderBackgroundProperty);set => this.SetValue(BorderBackgroundProperty, (object)value);}private void SetBubbleItem(BubbleItem item){if (item.Text.Length >= 4)_size = ControlsHelper.GetRandom.Next(80, _maxSize);else_size = ControlsHelper.GetRandom.Next(50, _maxSize);item.Width = _size;item.Height = _size;}public override void OnApplyTemplate(){base.OnApplyTemplate();_border = GetTemplateChild(BorderTemplateName) as Border;}public override void BeginInit(){Content = new ObservableCollection<BubbleItem>();base.BeginInit();}}
}

2) ControlsHelper.cs 代码如下;

  • 随机Double值;

  • 随机颜色;

private static long _tick = DateTime.Now.Ticks;public static Random GetRandom = new Random((int)(_tick & 0xffffffffL) | (int)(_tick >> 32));public static double NextDouble(double miniDouble, double maxiDouble){if (GetRandom != null){return GetRandom.NextDouble() * (maxiDouble - miniDouble) + miniDouble;}else{return 0.0d;}}public static Brush RandomBrush(){var R = GetRandom.Next(255);var G = GetRandom.Next(255);var B = GetRandom.Next(255);var color = Color.FromRgb((byte)R, (byte)G, (byte)B);var solidColorBrush = new SolidColorBrush(color);return solidColorBrush;}

3) BubbleItem.cs 代码如下;

using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;namespace WPFDevelopers
{public class BubbleItem : ListBoxItem{public static readonly DependencyProperty TextProperty =DependencyProperty.Register("Text", typeof(string), typeof(BubbleItem),new PropertyMetadata(string.Empty));public static readonly DependencyProperty SelectionCommandProperty =DependencyProperty.Register("SelectionCommand", typeof(ICommand), typeof(BubbleItem),new PropertyMetadata(null));static BubbleItem(){DefaultStyleKeyProperty.OverrideMetadata(typeof(BubbleItem),new FrameworkPropertyMetadata(typeof(BubbleItem)));}public string Text{get => (string)GetValue(TextProperty);set => SetValue(TextProperty, value);}public ICommand SelectionCommand{get => (ICommand)GetValue(SelectionCommandProperty);set => SetValue(SelectionCommandProperty, value);}}
}

4) BubbleControl.xaml 代码如下;

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:controls="clr-namespace:WPFDevelopers.Controls"><Style TargetType="{x:Type controls:BubbleControl}"><Setter Property="Width" Value="400"/><Setter Property="Height" Value="400"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="local:BubbleControl"><Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"><Border BorderBrush="#E9E9E9" BorderThickness="1" Background="#FAFAFA" Margin="45"CornerRadius="400"x:Name="PART_Border"><Ellipse Fill="#FFFFFF" Margin="20"/></Border><ListBox ItemsSource="{TemplateBinding Content}"Background="Transparent" BorderBrush="Transparent"ScrollViewer.HorizontalScrollBarVisibility="Disabled"ScrollViewer.VerticalScrollBarVisibility="Disabled"><ListBox.ItemContainerStyle><Style TargetType="{x:Type local:BubbleItem}"><Setter Property="Canvas.Left" Value="{Binding (Canvas.Left)}"/><Setter Property="Canvas.Top" Value="{Binding (Canvas.Top)}"/><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:controls="clr-namespace:WPFDevelopers.Controls"><ResourceDictionary.MergedDictionaries><ResourceDictionary Source="Basic/ControlBasic.xaml"/><ResourceDictionary Source="Basic/Animations.xaml"/></ResourceDictionary.MergedDictionaries><Style TargetType="{x:Type controls:BubbleControl}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Width" Value="400"/><Setter Property="Height" Value="400"/><Setter Property="Background" Value="{StaticResource WhiteSolidColorBrush}"/><Setter Property="BorderThickness" Value="1"/><Setter Property="BorderBrush" Value="{StaticResource SecondaryTextSolidColorBrush}"/><Setter Property="BorderBackground" Value="{StaticResource BaseSolidColorBrush}"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="controls:BubbleControl"><Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"><Border BorderBrush="{TemplateBinding BorderBrush}"BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding BorderBackground}" Margin="45"CornerRadius="400"x:Name="PART_Border"><Ellipse Fill="{TemplateBinding Background}" Margin="20"/></Border><ListBox ItemsSource="{TemplateBinding Content}"Background="Transparent" BorderBrush="Transparent"ScrollViewer.HorizontalScrollBarVisibility="Disabled"ScrollViewer.VerticalScrollBarVisibility="Disabled"Style="{x:Null}"><ListBox.ItemContainerStyle><Style TargetType="{x:Type controls:BubbleItem}"><Setter Property="Canvas.Left" Value="{Binding (Canvas.Left)}"/><Setter Property="Canvas.Top" Value="{Binding (Canvas.Top)}"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="controls:BubbleItem"><Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"><Ellipse Fill="{TemplateBinding Background}" Opacity=".6"/><TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"Padding="10,0"><Hyperlink Foreground="{StaticResource BlackSolidColorBrush}"Command="{TemplateBinding SelectionCommand}"><TextBlock Text="{TemplateBinding Text}"TextAlignment="Center"TextTrimming="CharacterEllipsis"ToolTip="{TemplateBinding Text}"/></Hyperlink></TextBlock></Grid><ControlTemplate.Triggers></ControlTemplate.Triggers></ControlTemplate></Setter.Value></Setter></Style></ListBox.ItemContainerStyle><ListBox.ItemsPanel><ItemsPanelTemplate><Canvas IsItemsHost="True" Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"/></ItemsPanelTemplate></ListBox.ItemsPanel></ListBox></Grid></ControlTemplate></Setter.Value></Setter></Style></ResourceDictionary>

5) BubbleControlExample.xaml 代码如下;

<local:BubbleControl x:Name="MyBubbleControl"><wpfdev:BubbleControl.Content><wpfdev:BubbleItem  Text="WPF" SelectionCommand="{Binding WPFCommand,RelativeSource={RelativeSource AncestorType=local:BubbleControlExample}}"/><wpfdev:BubbleItem  Text="ASP.NET"/><wpfdev:BubbleItem  Text="WinUI"/><wpfdev:BubbleItem  Text="WebAPI"/><wpfdev:BubbleItem  Text="Blazor"/><wpfdev:BubbleItem  Text="MAUI"SelectionCommand="{Binding MAUICommand,RelativeSource={RelativeSource AncestorType=local:BubbleControlExample}}"/><wpfdev:BubbleItem  Text="Xamarin"/><wpfdev:BubbleItem  Text="WinForm"/><wpfdev:BubbleItem  Text="UWP"/></wpfdev:BubbleControl.Content></local:BubbleControl>

6) BubbleControlExample.xaml.cs 代码如下;

using System.Windows.Controls;
using System.Windows.Input;
using WPFDevelopers.Samples.Helpers;namespace WPFDevelopers.Samples.ExampleViews
{/// <summary>/// BubbleControlExample.xaml 的交互逻辑/// </summary>public partial class BubbleControlExample : UserControl{public BubbleControlExample(){InitializeComponent();}public ICommand WPFCommand => new RelayCommand(delegate{WPFDevelopers.Minimal.Controls.MessageBox.Show("点击了“WPF开发者”.", "提示");});public ICommand MAUICommand => new RelayCommand(delegate{WPFDevelopers.Minimal.Controls.MessageBox.Show("点击了“MAUI开发者”.", "提示");});}
}
3fe55e1fbeae60d59bc62eea496330b7.png

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/284391.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转]LVS负载均衡(LVS简介、三种工作模式、十种调度算法)

一、LVS简介 LVS&#xff08;Linux Virtual Server&#xff09;即Linux虚拟服务器&#xff0c;是由章文嵩博士主导的开源负载均衡项目&#xff0c;目前LVS已经被集成到Linux内核模块中。该项目在Linux内核中实现了基于IP的数据请求负载均衡调度方案&#xff0c;其体系结构如图1…

一张图看懂微软Power BI系列组件

一、Power BI简介 Power BI是微软最新的商业智能&#xff08;BI&#xff09;概念&#xff0c;它包含了一系列的组件和工具。话不多说&#xff0c;直接上图吧&#xff1a; Power BI的核心理念就是让我们用户不需要强大的技术背景&#xff0c;只需要掌握Excel这样简单的工具就能快…

互联网项目总结

2019独角兽企业重金招聘Python工程师标准>>> 从去年年底开始专门被分配到互联网小组做项目&#xff0c;一直想做个总结&#xff0c;但是苦于太贪玩。好吧&#xff0c;借着小组技术交流来一发。这里只对自己新学习的技术或者一些小技巧做简要概述&#xff0c;不做深究…

【ArcGIS微课1000例】0036:分式标注案例教程

【拓展阅读】:【ArcGIS Pro微课1000例】0015:ArcGIS Pro中属性字段分式标注案例教程 文章目录 1. 符号化2. 分式标注1. 符号化 右键数据图层→符号系统,打开符号系统对话框,住符号系统选择【唯一值】,字段1选择NAME。 唯一值标注效果: 2. 分式标注 双击打开图层属性,切…

【转】 ConstraintLayout 完全解析 快来优化你的布局吧

转自&#xff1a; http://blog.csdn.net/lmj623565791/article/details/78011599 本文出自张鸿洋的博客 一、概述 ConstraintLayout出现有一段时间了&#xff0c;不过一直没有特别去关注&#xff0c;也多多少少看了一些文字介绍&#xff0c;多数都是对使用可视化布局拖拽&#…

[转]Docker超详细基础教程,快速入门docker

一、docker概述 1.什么是docker Docker 是一个开源的应用容器引擎&#xff0c;基于 Go 语言 并遵从 Apache2.0 协议开源。 Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中&#xff0c;然后发布到任何流行的 Linux 机器上&#xff0c;也可以实现虚拟…

【Zookeeper】源码分析之服务器(一)

一、前言 前面已经介绍了Zookeeper中Leader选举的具体流程&#xff0c;接着来学习Zookeeper中的各种服务器。 二、总体框架图 对于服务器&#xff0c;其框架图如下图所示 说明&#xff1a; ZooKeeperServer&#xff0c;为所有服务器的父类&#xff0c;其请求处理链为PrepReques…

linux下配置samba服务器(以CentOS6.7为例)

一、简介&#xff08;百度百科&#xff09;Samba是在Linux和UNIX系统上实现SMB协议的一个免费软件&#xff0c;由服务器及客户端程序构成。SMB&#xff08;Server Messages Block&#xff0c;信息服务块&#xff09;是一种在局域网上共享文件和打印机的一种通信协议&#xff0c…

【ArcGIS微课1000例】0037:上下标标注记案例教程

在利用ArcGIS进行制图时&#xff0c;进行标注(Label) 或注记(Annolation) 是必不可少的。但是除了常规的标注和注记以外&#xff0c;还时常需要一些特殊的标注或注记&#xff0c;比如上标、下标等。 文章目录一、上标标注方法二、下标标注方法一、上标标注方法 上下标代码模板…

Redis——缓存击穿、穿透、雪崩

1、缓存穿透&#xff1a; &#xff08;1&#xff09;问题描述&#xff1a;key对应的数据并不存在&#xff0c;每次请求访问key时&#xff0c;缓存中查找不到&#xff0c;请求都会直接访问到数据库中去&#xff0c;请求量超出数据库时&#xff0c;便会导致数据库崩溃。如一个用…

数据库性能系列之子查询

前言说起数据库&#xff0c;想必一些朋友会认为&#xff0c;数据库不就是天天CRUD吗&#xff1f;只要我掌握了这几招&#xff0c;根本不在话下。是的&#xff0c;其实我也很赞同这个观点&#xff0c;对于大多数应用程序来说&#xff0c;只掌握这些内容&#xff0c;是可以胜任日…

laravel 内部验证码

为什么80%的码农都做不了架构师&#xff1f;>>> 1.找到此文件composer.json 如下图添加 "gregwar/captcha": "1.*" 行代码 2.在命令行中执行 composer update 安装完成后 3.找到控制器添加如下代码 public function captcha($tmp) {//生成验证…

k8s docker集群搭建

一、Kubernetes系列之介绍篇 1.背景介绍 云计算飞速发展 - IaaS - PaaS - SaaS Docker技术突飞猛进 - 一次构建&#xff0c;到处运行 - 容器的快速轻量 - 完整的生态环境 2.什么是kubernetes 首先&#xff0c;他是一个全新的基于容器技术的分布式架构领先方案。Kubernetes(k8…

如何让最小 API 绑定查询字符串中的数组

前言在上次的文章中&#xff0c;我们实现了《让 ASP.NET Core 支持绑定查询字符串中的数组》&#xff1a;[HttpGet] public string Get([FromQuery][ModelBinder(BinderType typeof(IntArrayModelBinder))] int[] values) {return string.Join(" ", values.Select(p…

Kubernetes api-server源码阅读2(Debug Kubernetes篇)

云原生学习路线导航页&#xff08;持续更新中&#xff09; 本文是 Kubernetes api-server源码阅读 系列第二篇&#xff0c;主要讲述如何实现 kubernetes api-server 的 debug 参考b站视频地址&#xff1a;Kubernetes源码开发之旅二 1.本篇章任务 Go-Delve&#xff1a;go语言的…

webrtc 视频 demo

webrtc 视频 demo webrtc网上封装的很多&#xff0c;demo很多都是一个页面里实现的&#xff0c;今天实现了个完整的 &#xff0c; A 发视频给 BA webrtc.html作为offer <!DOCTYPE html> <html id"home" lang"en"><head><meta http-e…

[转]阿里开源低代码引擎LowCodeEngine

一、什么是低代码引擎 低代码引擎是具备强大扩展能力的低代码研发框架&#xff0c;使用者只需要基于低代码引擎便可以快速定制符合自己业务需求的低代码平台。同时&#xff0c;低代码引擎还在标准低代码设计器的基础上提供了简单易用的定制扩展能力&#xff0c;能够满足业务独特…

Beyond Istio OSS——Istio服务网格的现状与未来

作者&#xff1a;宋净超&#xff08;Jimmy Song&#xff09;&#xff0c;原文地址&#xff1a;https://jimmysong.io/blog/beyond-istio-oss/本文根据笔者在 GIAC 深圳 2022 年大会上的的演讲《Beyond Istio OSS —— Istio 的现状及未来》[1] 整理而成&#xff0c;演讲幻灯片见…

js多维数组扁平化

数组扁平化&#xff0c;就是将多维数组碾平为一维数组&#xff0c;方便使用。 一&#xff1a;例如&#xff0c;一个二维数组 var arr [a, [b, 2], [c, 3, x]]&#xff0c;将其扁平化&#xff1a; 1. 通过 apply 借用数组的 concat 方法&#xff1a; [].concat.apply([], arr)…

第16讲 用户程序的结构与执行

转载于:https://www.cnblogs.com/atuo/p/5609843.html