简单在 WinUI 仿造 WPF 的 ColumnDefinition SharedSizeGroup 共享列宽功能

news/2024/11/15 17:56:21/文章来源:https://www.cnblogs.com/lindexi/p/18353046

本文将告诉大家如何在 WinUI 3 或 UNO 里面,仿造 WPF 的 ColumnDefinition SharedSizeGroup 共享列宽功能

本文的实现代码是大量从 https://github.com/Qiu233/WinUISharedSizeGroup 抄的,感谢大佬提供的代码。我在此基础上简化了对 Behavior 的依赖,在本文末尾放上了全部代码的下载方法

实现效果如下:

在界面放入两个 Grid 容器,这两个 Grid 容器分别都有两列,其中第零个 Grid 里面的首列放入一个带背景的 Border 控件,默认情况下宽度被压缩,期望能通过 SharedSizeGroup 的能力共享其他 Grid 的列宽而被撑开。第一个 Grid 里面的首列放入一个按钮,按钮点击的时候修改按钮的宽度,代码如下

  <Grid local:ColumnSharedSizeHelper.IsSharedSizeScope="true"><Grid.RowDefinitions><RowDefinition Height="100"></RowDefinition><RowDefinition Height="100"></RowDefinition></Grid.RowDefinitions><Grid x:Name="Grid1"><Grid.ColumnDefinitions><ColumnDefinition></ColumnDefinition><ColumnDefinition Width="*"></ColumnDefinition></Grid.ColumnDefinitions><Border Background="Blue" local:ColumnSharedSizeHelper.SharedSizeGroup="S1"></Border></Grid><Grid Grid.Row="1"><Grid.ColumnDefinitions><ColumnDefinition></ColumnDefinition><ColumnDefinition Width="*"></ColumnDefinition></Grid.ColumnDefinitions><Button Width="100" local:ColumnSharedSizeHelper.SharedSizeGroup="S1" Click="Button_OnClick"/></Grid></Grid>

如以上代码可以看到添加了名为 ColumnSharedSizeHelper 的辅助类用来提供 IsSharedSizeScope 和 SharedSizeGroup 附加属性,这两个附加属性和在 WPF 中有一点不一样的是不能放入在 ColumnDefinition 里面。现实中我也确实没有想到什么办法可以附加到 ColumnDefinition 里面实现功能。这也就让我仿造的功能比 WPF 弱

在后台代码里面的 Button_OnClick 只修改按钮宽度,代码如下

    private void Button_OnClick(object sender, RoutedEventArgs e){var button = (Button) sender;button.Width += 100;}

运行代码的界面效果如下图

核心代码是 ColumnSharedSizeHelper 类型,其实现逻辑如下

public static class ColumnSharedSizeHelper
{// Copy From https://github.com/Qiu233/WinUISharedSizeGrouppublic static readonly DependencyProperty IsSharedSizeScopeProperty =DependencyProperty.RegisterAttached("IsSharedSizeScope", typeof(bool), typeof(UIElement), new PropertyMetadata(false));private static readonly DependencyProperty SharedSizeGroupProperty =DependencyProperty.RegisterAttached("SharedSizeGroup", typeof(string), typeof(UIElement), new PropertyMetadata(null));public static void SetIsSharedSizeScope(DependencyObject o, bool group) => o.SetValue(IsSharedSizeScopeProperty, group);public static bool GetIsSharedSizeScope(DependencyObject o) => (bool) o.GetValue(IsSharedSizeScopeProperty);public static void SetSharedSizeGroup(DependencyObject o, string group){o.SetValue(SharedSizeGroupProperty, group);if (o is FrameworkElement framework){framework.Loaded -= FrameworkOnLoaded;framework.Loaded += FrameworkOnLoaded;void FrameworkOnLoaded(object sender, RoutedEventArgs e){TrySetSize(framework);framework.SizeChanged -= Framework_SizeChanged;framework.SizeChanged += Framework_SizeChanged;}}}private static void Framework_SizeChanged(object sender, SizeChangedEventArgs args){if (sender is not FrameworkElement currentFrameworkElement){return;}TrySetSize(currentFrameworkElement);}private static void TrySetSize(FrameworkElement currentFrameworkElement){var sharedSizeGroup = GetSharedSizeGroup(currentFrameworkElement);if (string.IsNullOrEmpty(sharedSizeGroup)){return;}if (currentFrameworkElement.Parent is not Grid grid){throw new InvalidOperationException();}FrameworkElement p = currentFrameworkElement;while (!ColumnSharedSizeHelper.GetIsSharedSizeScope(p)){if (VisualTreeHelper.GetParent(p) is not FrameworkElement fe){return;}else{p = fe;}}if (p == currentFrameworkElement){return;}if (!ColumnSharedSizeHelper.GetIsSharedSizeScope(p)){return;}var group = p.GetValue(GroupsProperty) as Dictionary<string, ColumnSharedSizeGroup>;if (group == null){group = new Dictionary<string, ColumnSharedSizeGroup>();p.SetValue(GroupsProperty, group);}if (!group.TryGetValue(sharedSizeGroup, out var columnSharedSizeGroup)){columnSharedSizeGroup = new ColumnSharedSizeGroup();group.Add(sharedSizeGroup, columnSharedSizeGroup);}columnSharedSizeGroup.Update(currentFrameworkElement);}public static string GetSharedSizeGroup(DependencyObject o){return (string) o.GetValue(SharedSizeGroupProperty);}public static readonly DependencyProperty GroupsProperty =DependencyProperty.RegisterAttached(nameof(ColumnSharedSizeGroup), typeof(Dictionary<string, ColumnSharedSizeGroup>), typeof(UIElement),new PropertyMetadata(null));class ColumnSharedSizeGroup{public void Update(FrameworkElement currentFrameworkElement){var grid = (Grid) currentFrameworkElement.Parent;var value = (int) currentFrameworkElement.GetValue(Grid.ColumnProperty);var column = grid.ColumnDefinitions[value];if (!_columns.Contains(column)){_columns.Add(column);}var adjustments = new List<ColumnDefinition>();var width = currentFrameworkElement.ActualWidth + currentFrameworkElement.Margin.Left + currentFrameworkElement.Margin.Right;if (width > _columnSize){_columnSize = width;adjustments.AddRange(_columns);}else{adjustments.Add(column);}foreach (var columnDefinition in adjustments){columnDefinition.Width = new GridLength(_columnSize);}}private readonly List<ColumnDefinition> _columns = [];private double _columnSize = 0.0;}
}

本文代码放在 github 和 gitee 上,可以使用如下命令行拉取代码。我整个代码仓库比较庞大,使用以下命令行可以进行部分拉取,拉取速度比较快

先创建一个空文件夹,接着使用命令行 cd 命令进入此空文件夹,在命令行里面输入以下代码,即可获取到本文的代码

git init
git remote add origin https://gitee.com/lindexi/lindexi_gd.git
git pull origin 48c6e653a28a5f5609738a288b9b34b31f37c18c

以上使用的是国内的 gitee 的源,如果 gitee 不能访问,请替换为 github 的源。请在命令行继续输入以下代码,将 gitee 源换成 github 源进行拉取代码。如果依然拉取不到代码,可以发邮件向我要代码

git remote remove origin
git remote add origin https://github.com/lindexi/lindexi_gd.git
git pull origin 48c6e653a28a5f5609738a288b9b34b31f37c18c

获取代码之后,进入 UnoDemo/JeawehonawbuWhaikeregaryere 文件夹,即可获取到源代码

更多技术博客,请参阅 博客导航

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

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

相关文章

ext2 文件系统解析

ext2文件系统整体布局 每个块组内部都有相关的元数据对该块组进行管理。如图所示,第一个块组中的元数据包括引导块、超级块、块组描述符、预留GDT块、数据块位图、inode位图、inode表和其它数据块。后续块组中有些是对超级块的备份,有些则没有第一个块组这么完整的元数据信息…

mac最新安装php各版本教程,和ghcr.io被墙的解决方法

2024年8月,很多国外链接都被墙了,导致mac安装php旧版本好困难,特意记录一下方法 1.brew tap shivammathur/php 超时问题如果 tap 超时, 则用浏览器打开 https://github.com/shivammathur/homebrew-php , 下载压缩包 或者直接百度云下载 百度云:https://pan.baidu.com/s/1lsp-E…

澳洲 WHV All In One

澳洲 WHV All In One 工作假期签证申请常见问题 Cambly 英语外教,真人视频口语对话练习课澳洲 WHV All In One WHVWorking Holiday VisaFor young adults who want an extended holiday and to work here to fund it.https://immi.homeaffairs.gov.au/visas/getting-a-visa/vi…

024.Vue3入门,父页面给子页面传递多种数据

1、App.vue代码如下:<template><Father/> </template><script setup> import Father from ./view/Father.vue </script><style> </style>2、Father.vue代码如下:<template><h3>父页面</h3><Child :FMsg=&quo…

小总结(1)

前言: 这篇总结本来想在学习reverse一周年的时候写的,回过头想想,我的大学生活不只有reverse,每一个成长的瞬间都应该被记录下来。 Happiness should be about everything and not a certain moment (至于为什么选择使用博客园写,我的GitHub使用无法将本地资源上传,导致…

023.Vue3入门,父页面给子页面传递数据

1、App.vue代码如下:<template><Father/> </template><script setup> import Father from ./view/Father.vue </script><style> </style>2、Father.vue代码如下:<template><h3>父页面</h3><Child :title=&qu…

022.Vue3入门,注册全局组件,在任何页面直接使用

1、main.js代码如下:// import ./assets/main.cssimport {createApp} from vue import App from ./App.vue import Config from "@/config.js"; import Testpage001 from "@/view/Testpage001.vue";const app = createApp(App);// 定义一个全局组件,名字为…

021.Vue3入门,注册全局组件,在任何页面直接使用

1、main.js代码如下:// import ./assets/main.cssimport {createApp} from vue import App from ./App.vue import Config from "@/config.js"; import Testpage001 from "@/view/Testpage001.vue";const app = createApp(App);// 定义一个全局组件,名字为…

支付三大黑盒之三账务核心

各位小伙伴大家好! 这次给大家揭秘支付三大黑盒的最后一个“账务核心”(另外两个是清结算对账、支付引擎),这账务核心可能是其中门槛最高的,因为他既要懂会计知识,又有懂技术如何实现高性能的记账。 下面我就用大白话+图片的方式给大家来详细介绍支付系统最后一个黑盒“账…

Linux环境安装SQL Server 数据库

SQL Server在Linux 上的支持版本包括Red Hat Enterprise Linux(RHEL)、SUSE Linux Enterprise Server(SLES)和Ubuntu。 一、在虚拟机上安装RHEL操作系统 链接:https://pan.baidu.com/s/1567NfZRF48PBXfUqxumvDA 提取码:bm7u 1、在虚拟机中创建Red Hat7.9 点击创建新的虚拟机选…

全网最适合入门的面向对象编程教程:35 Python的内置数据类型-文档字符串和__doc__属性

在 Python 中,文档字符串(Docstring)是一种用于为模块、类、方法或函数编写文档的字符串,通常放置在定义的开头,紧跟在声明之后。文档字符串使用三重引号(""" 或 )包围,可以跨越多行。全网最适合入门的面向对象编程教程:35 Python 的内置数据类型-文档…

VDI/VDE 2634 Part2 2002:05

VDI/VDE 2634 2002:05 第二部分[!NOTE] 原始PDF链接:https://www.doc88.com/p-57887264529548.htmlOptical 3-D measuring systems Optical systems based on area scanning Preliminary note Optical 3-D measuring systems are used as universal measuring and test equipm…