WPF中如何使用区域导航

1.创建一个Prism框架的项目并设计好数据源

User如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace WPF练习17区域导航.Models
{public class User{public int UserId { get; set; }public string UserName { get; set; }public string UserPwd { get; set; }}
}

UserData如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace WPF练习17区域导航.Models
{public static class UserData{public static List<User> Users = new List<User>() {new User(){ UserId=1,UserName="张三1",UserPwd="123456"},new User(){ UserId=2,UserName="张三2",UserPwd="123456"}};}
}

2.设计好MainWindow.XAML页面 并创建四个UserControl的导航页面以及相应的ViewModel然后将视图注册进Ioc容器

MainWindow.XAML如下:

<Window x:Class="WPF练习17区域导航.Views.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:prism="http://prismlibrary.com/"prism:ViewModelLocator.AutoWireViewModel="True"Title="{Binding Title}"Height="350"Width="525"WindowStartupLocation="CenterScreen"><Grid><Grid.RowDefinitions><RowDefinition Height="60" /><RowDefinition /></Grid.RowDefinitions><Grid Background="Blue"><WrapPanel VerticalAlignment="Center"><TextBlock VerticalAlignment="Center"FontSize="30"Foreground="White"Text="XXX管理系统" /><Button Width="50"Margin="10,0,0,0"Command="{Binding BackCommand}"Content="后退" /><Button Width="50"Margin="10,0,0,0"Command="{Binding ForwardCommand}"Content="前进" /></WrapPanel></Grid><Grid Grid.Row="1"><Grid.ColumnDefinitions><ColumnDefinition Width="160" /><ColumnDefinition /></Grid.ColumnDefinitions><StackPanel Background="Green"><Button Height="30"Margin="0,10,0,0"Command="{Binding TogglePage}"CommandParameter="{Binding RelativeSource={RelativeSource Self}}"Content="PageA" /><Button Height="30"Margin="0,10,0,0"Command="{Binding TogglePage}"CommandParameter="{Binding RelativeSource={RelativeSource Self}}"Content="PageB" /><Button Height="30"Margin="0,10,0,0"Command="{Binding TogglePage}"CommandParameter="{Binding RelativeSource={RelativeSource Self}}"Content="PageC" /></StackPanel><Border Grid.Column="1"Padding="10"BorderBrush="Red"BorderThickness="2"><ContentControl prism:RegionManager.RegionName="ContentRegion" /></Border></Grid></Grid>
</Window>

创建四个UserControl的导航页面:

将视图注册进Ioc容器:

3.四个页面设计好以后 写好MainWIndow对应的ViewModel代码

PageA如下:

<UserControl x:Class="WPF练习17区域导航.Views.Pages.PageA"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:WPF练习17区域导航.Views.Pages"mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"><Grid><Grid.RowDefinitions><RowDefinition Height="50" /><RowDefinition /><RowDefinition Height="30" /></Grid.RowDefinitions><StackPanel VerticalAlignment="Center"><TextBlock Text="查询条件区域" /></StackPanel><DataGrid Grid.Row="1"AutoGenerateColumns="False"IsReadOnly="True"ItemsSource="{Binding Users}"><DataGrid.Columns><DataGridTextColumn Width="*"Binding="{Binding UserId}"Header="编号" /><DataGridTextColumn Width="*"Binding="{Binding UserName}"Header="账号" /><DataGridTextColumn Width="*"Binding="{Binding UserPwd}"Header="密码" /><DataGridTemplateColumn Width="3*"Header="操作"><DataGridTemplateColumn.CellTemplate><DataTemplate><WrapPanel><Button Width="50"Margin="5,0,0,0"Command="{Binding DataContext.EditCommand, RelativeSource={RelativeSource AncestorType=UserControl}}"CommandParameter="{Binding UserId}"Content="编辑" /><Button Width="50"Margin="5,0,0,0"Content="删除" /><Button Width="70"Margin="5,0,0,0"Content="分配权限" /><Button Width="50"Margin="5,0,0,0"Content="详情" /></WrapPanel></DataTemplate></DataGridTemplateColumn.CellTemplate></DataGridTemplateColumn></DataGrid.Columns></DataGrid><StackPanel Grid.Row="2"VerticalAlignment="Center"><TextBlock Text="分页区域" /></StackPanel></Grid>
</UserControl>

PageAViewModel如下:

using Prism.Commands;
using Prism.Mvvm;
using Prism.Regions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using WPF练习17区域导航.Models;namespace WPF练习17区域导航.ViewModels.Pages
{public class PageAViewModel: BindableBase, INavigationAware, IConfirmNavigationRequest{private readonly IRegionManager regionManager;public PageAViewModel(IRegionManager regionManager){this.regionManager = regionManager;}private List<User> users = UserData.Users;public List<User> Users{get { return users; }set { SetProperty(ref users, value); }}public DelegateCommand<object> EditCommand{get{return new DelegateCommand<object>((obj) =>{int userId = (int)obj;// 导航到编辑页面,并且需要向编辑页面传递参数UserIdNavigationParameters parameters = new NavigationParameters{{ "uid", userId }};// 通过NavigationParameters对象向导航传递参数this.regionManager.Regions["ContentRegion"].RequestNavigate("PageAEdit", parameters);});}}#region INavigationAwre// 第一次进入页面不会执行,第2次之后都会进入。public bool IsNavigationTarget(NavigationContext navigationContext){//MessageBox.Show("PageA IsNavigationTarget!");return false;}// 站在当前页面的角度:OnNavigatedFrom离开当前页面public void OnNavigatedFrom(NavigationContext navigationContext){//MessageBox.Show("离开PageA!");}// 站在当前页面的角度:OnNavigatedTo到当前页面public void OnNavigatedTo(NavigationContext navigationContext){//MessageBox.Show("到PageA!");}#endregion#region IConfirmNavigationRequest// 时机:如果从PageA跳转到PageAEdit页面,需要进行导航确认,应该把导航确认的业务逻辑流写到来源页面。// 导航时,确认是否允许导航动作。// navigationContext导航上下文对象。// continuationCallback回调函数。public void ConfirmNavigationRequest(NavigationContext navigationContext, Action<bool> continuationCallback){if (navigationContext.Uri.ToString() == "PageAEdit"){MessageBoxResult mbr = MessageBox.Show("是否允许进入PageAEdit页面?", "询问", MessageBoxButton.YesNo, MessageBoxImage.Question);bool isAllow = false;if (mbr == MessageBoxResult.Yes){isAllow = true;}continuationCallback(isAllow);}else{continuationCallback(true);}}#endregion}
}

在WPF中使用Prism框架时,INavigationAwareIConfirmNavigationRequest是两个重要的接口,它们允许视图或视图模型参与导航过程,提供了对导航行为的细粒度控制。

INavigationAware

INavigationAware接口包含三个方法,用于在导航过程中与视图或视图模型进行交互:

  • bool IsNavigationTarget(NavigationContext navigationContext):当导航到视图或视图模型时,该方法被调用,以确定当前实例是否可以处理导航请求。通常返回true,表示当前视图可以处理导航
  • void OnNavigatedTo(NavigationContext navigationContext):当视图被导航到的时候,该方法被调用。可以用来初始化视图或处理传入的参数。
  • void OnNavigatedFrom(NavigationContext navigationContext):当视图被导航离开时,该方法被调用。可以用来保存状态或清理资源。

IConfirmNavigationRequest

IConfirmNavigationRequest接口继承自INavigationAware,并添加了一个方法ConfirmNavigationRequest,用于在导航发生前与用户交互,以确认或取消导航:

  • void ConfirmNavigationRequest(NavigationContext navigationContext, Action<bool> continuationCallback):该方法提供了两个参数,一个是当前导航上下文,另一个是一个回调方法。在调用该方法时,可以显示一个确认对话框,根据用户的选择调用回调方法以决定是否继续导航。例如,如果用户选择取消,则导航将被取消。

PageAEdit.XAML如下:

<UserControl x:Class="WPF练习17区域导航.Views.Pages.PageAEdit"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:WPF练习17区域导航.Views.Pages"mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"><Grid HorizontalAlignment="Center"VerticalAlignment="Center"><StackPanel><WrapPanel Margin="0,10,0,0"><TextBlock Text="账号:" /><TextBox Width="150"Text="{Binding CurrentEditUser.UserName}" /></WrapPanel><WrapPanel Margin="0,10,0,0"><TextBlock Text="密码:" /><TextBox Width="150"Text="{Binding CurrentEditUser.UserPwd}" /></WrapPanel><WrapPanel Margin="0,10,0,0"><Button Width="50"Content="保存" /></WrapPanel><WrapPanel Margin="0,10,0,0"><Button Width="160"Command="{Binding GoOtherEditCommand}"CommandParameter="2"Content="详情页面跳转到其他详情" /></WrapPanel></StackPanel></Grid>
</UserControl>

PageAEditViewModel如下:

using Prism.Commands;
using Prism.Mvvm;
using Prism.Regions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WPF练习17区域导航.Models;namespace WPF练习17区域导航.ViewModels.Pages
{// 在PageAEdit页面接收到UserId才能处理下一步的逻辑。// 一个跳转目标(PageAEdit页面)要想接收传递过来的参数:必须实现INavigationAwarepublic class PageAEditViewModel : BindableBase, INavigationAware{private readonly IRegionManager regionManager;public PageAEditViewModel(IRegionManager regionManager){this.regionManager = regionManager;}private User currentEditUser;public User CurrentEditUser{get { return currentEditUser; }set { SetProperty(ref currentEditUser, value); }}#region INavigationWare// IsNavigationTarget()第一次进入页面不会执行,第2次之后才会进入。// 通过调试,会发现IsNavigationTarget()方法返回true或false达到效果是一样。但是性能不一样。// 如果返回true,说明不会重新创建视图实例,不会重新创建导航上下文,即:IsNavigationTarget()方法中使用的视图实例及上下文会在OnNavigatedTo()方法中共用。// 如果返回false,说明会重新创建视图实例,会重新创建导航上下文,即:IsNavigationTarget()方法中使用的视图实例及上下文和OnNavigatedTo()方法中使用的视图实例及上下文不是同一个实例。/*IsNavigationTarget()方法用来控制视图或者视图模型实例在导航时是否被重用。当你尝试导航到一个新的视图的时候,Prism会检查当前活动的视图或者视图模型的实例,并调用他们的IsNavigationTarget方法,以决定是否可以重用这个实例。如果返回true,Prism框架将不会创建新的视图或者视图模型实例,而是重用当前的实例。这种方式非常适用于那些数据和状态不需要每次都重新加载的视图,可以提高应用程序的响应速度和资源利用率。*/public bool IsNavigationTarget(NavigationContext navigationContext){Console.WriteLine(navigationContext);//MessageBox.Show("PageAEdit IsNavigationTarget!");return true;}// 站在当前页面的角度:OnNavigatedFrom离开当前页面public void OnNavigatedFrom(NavigationContext navigationContext){//MessageBox.Show("离开PageAEdit!");}// 站在当前页面的角度:OnNavigatedTo到当前页面// 拿参数的时机:在进入当前页面时,拿传递的参数最合理。// 如何拿参数?NavigationContext导航的上下文,拿到上下文就可以拿Uri, Parameters, NavigationService 操作API(导航服务)public void OnNavigatedTo(NavigationContext navigationContext){object obj = navigationContext.Parameters["uid"]; // 取传值方式1int uid1 = (int)obj;int uid2 = navigationContext.Parameters.GetValue<int>("uid");//取传值方式2// AsQueryable()转换成IQueryable<T>,由于IQueryable<T>继承IEnumerable<T>接口,从而可以调用LINQ扩展方法。CurrentEditUser = UserData.Users.AsQueryable().Where(u => u.UserId == uid1).FirstOrDefault();//MessageBox.Show("到PageAEdit!");}#endregionpublic DelegateCommand<object> GoOtherEditCommand{get{return new DelegateCommand<object>(obj =>{int uid = Convert.ToInt32(obj);NavigationParameters parameters = new NavigationParameters(){{"uid",uid}};this.regionManager.RequestNavigate("ContentRegion", "PageAEdit", parameters);});}}}
}

PageB如下:

<UserControl x:Class="WPF练习17区域导航.Views.Pages.PageB"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:WPF练习17区域导航.Views.Pages"mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"><Grid><TextBlock Text="PageB" /></Grid>
</UserControl>

PageBViewModel如下:

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace 区域导航.ViewModels.Pages
{public class PageBViewModel : BindableBase{}
}

PageC如下:

<UserControl x:Class="WPF练习17区域导航.Views.Pages.PageC"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:WPF练习17区域导航.Views.Pages"mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"><Grid><TextBlock Text="PageC" /></Grid>
</UserControl>

PageCViewModel如下:

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace WPF练习17区域导航.ViewModels.Pages
{public class PageCViewModel : BindableBase{}
}

4.最后写好MainWindowViewModel代码

using Prism.Commands;
using Prism.Mvvm;
using Prism.Regions;
using System.Windows.Controls;namespace WPF练习17区域导航.ViewModels
{public class MainWindowViewModel : BindableBase{// 导航日志服务,主要负责提供导航日志的管理,如:添加导航日志,根据导航日志可以前进,后退等等。// 添加导航日志的时机,应该在导航跳转成功后,添加导航日志。private IRegionNavigationJournal journal;private readonly IRegionManager regionManager;// 使用依赖注入的把区域管理服务注入当前的VM。public MainWindowViewModel(IRegionManager regionManager, IRegionNavigationJournal journal){this.regionManager = regionManager;this.journal = journal;}private string _title = "Prism Application";public string Title{get { return _title; }set { SetProperty(ref _title, value); }}public DelegateCommand<object> TogglePage{get{return new DelegateCommand<object>(obj =>{Button button = obj as Button;// 导航跳转// 前提:需要把视图先扔到Ioc容器// 1。拿区域管理器(其实是区域给VM提供的一种服务而异)// 2。从区域管理器中拿某个区域// 3。调用区域的API(导航服务)// 参数1:导航的目标视图名称。参数2:导航后(有可能成功,也有可能失败)的回调函数。参数3:导航参数。this.regionManager.Regions["ContentRegion"].RequestNavigate(button.Content.ToString(),NavigationCallback,new NavigationParameters());});}}private void NavigationCallback(NavigationResult navigationResult){// 导航成功//if(navigationResult.Result==true)//if((bool)navigationResult.Result)if (navigationResult.Result.Value == true){// 添加导航日志的时机,应该在导航跳转成功后,添加导航日志。// navigationResult.Context先拿导航上下文。// NavigationService导航服务// Journal日志journal = navigationResult.Context.NavigationService.Journal;}}public DelegateCommand ForwardCommand{get{return new DelegateCommand(() =>{if (journal != null && journal.CanGoForward){journal.GoForward();}});}}public DelegateCommand BackCommand{get{return new DelegateCommand(() =>{if (journal != null && journal.CanGoBack){journal.GoBack();}});}}}
}

5.效果如下:

 

 

 

 

 

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

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

相关文章

使用YOLOv9进行图像与视频检测

大家好&#xff0c;YOLOv9 与其前身v8一样&#xff0c;专注于识别和精确定位图像和视频中的对象。本文将介绍如何使用YOLOv9进行图像与视频检测&#xff0c;自动驾驶汽车、安全系统和高级图像搜索等应用在很大程度上依赖于此功能&#xff0c;YOLOv9 引入了比 YOLOv8 更令人印象…

基于Cocos Creator开发的打砖块游戏

一、简介 Cocos简而言之就是一个开发工具&#xff0c;详见官方网站TypeScript简而言之就是开发语言&#xff0c;是JavaScript的一个超集详解官网 今天我们就来学习如何写一个打砖块的游戏&#xff0c;很简单的一个入门级小游戏。 二、实现过程 2.1 布局部分 首先来一个整体…

YOLOv8改进 | 利用YOLOv8进行视频划定区域目标统计计数

简介 本项目旨在利用YOLOv8算法来实现视频中划定区域目标的统计计数。YOLOv8是一种目标检测算法,能够实现实时目标检测和定位。视频划定区域目标统计计数是指在一个视频中,对于指定的区域,统计出该区域内出现的目标物体数量。 该项目的工作流程如下:首先,利用YOLOv8算法…

【数据结构】线性表——栈与队列

写在前面 栈和队列的关系与链表和顺序表的关系差不多&#xff0c;不存在谁替代谁&#xff0c;只有双剑合璧才能破敌万千~~&#x1f60e;&#x1f60e; 文章目录 写在前面一、栈1.1栈的概念及结构1.2、栈的实现1.2.1、栈的结构体定义1.2.2、栈的初始化栈1.2.3、入栈1.2.4、出栈…

Django 的 ModelViewSet 中的 get_queryset 方法自定义查询集

场景&#xff1a;每次调用接口&#xff0c;自动更新某个字段 基于Django REST framework class ApiDataTrackingView(ModelViewSet):queryset ApiDataTracking.objects.all()serializer_class ApiDataTrackingSerializersfilterset_class ApiDataTrackingFilterordering_f…

Rust编程与项目实战-特质(Trait)

【图书介绍】《Rust编程与项目实战》-CSDN博客 《Rust编程与项目实战》(朱文伟&#xff0c;李建英)【摘要 书评 试读】- 京东图书 (jd.com) Rust编程与项目实战_夏天又到了的博客-CSDN博客 特质&#xff08;Trait&#xff09;是Rust中的概念&#xff0c;类似于其他语言中的接…

uniapp中使用全局样式文件引入的三种方式

如果你想在 uni-app 中全局引入 SCSS 文件&#xff08;例如 global.scss&#xff09;&#xff0c;可以通过以下步骤进行配置&#xff1a; 方法一&#xff1a;在 main.js 中引入 在 main.js 中引入全局样式&#xff1a; 你可以在 src/main.js 文件中直接引入 SCSS 文件&#xff…

运维之systemd 服务(Systemd Service of Operations and Maintenance)

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 本人主要分享计算机核心技…

Vue — 组件化开发

组件化开发&#xff1a;一个页面可以拆分成一个个组件&#xff1b;每个组件都有自己独立的结构、样式、行为 组件分类&#xff1a;普通组件、根组件 其中根组件包裹着所有普通小组件 普通组件的注册使用&#xff1b;有两种注册方式 局部注册全局注册 局部注册 目标&#xff…

【学习】【HTML】HTML、XML、XHTML

HTML 什么是 HTML&#xff1f; HTML (HyperText Markup Language) 是一种用于创建和展示网页的标准标记语言。它由一系列的元素组成&#xff0c;这些元素通过标签的形式来告诉浏览器如何显示内容。 HTML 的基本结构是什么&#xff1f; <!DOCTYPE html> <html> …

【软考】系统架构设计师-计算机系统基础(2):操作系统

1、操作系统基础 OS的5个核心功能&#xff1a;进程管理、存储管理、设备管理、文件管理、作业管理 OS的3个作用&#xff1a;管理运行的程序和分配各种软硬件资源&#xff1b;提供友善的人机界面&#xff1b;为程序应用的开发和运行提供高效的平台 OS的4个特征&#xff1a;并…

Android ANR分析总结

1、ANR介绍 ANR&#xff08;Application Not Responding&#xff09;指的是应用程序无响应&#xff0c;当Android应用程序在主线程上执行长时间运行的操作或阻塞I/O操作时发生。这可能导致应用程序界面冻结或无法响应用户输入。 1、Service ANR&#xff1a;前台20s&#xff0…

WebRTC视频 01 - 视频采集整体架构

一、前言&#xff1a; 我们从1对1通信说起&#xff0c;假如有一天&#xff0c;你和你情敌使用X信进行1v1通信&#xff0c;想象一下画面是不是一个大画面中有一个小画面&#xff1f;这在布局中就叫做PIP&#xff08;picture in picture&#xff09;&#xff1b;这个随手一点&am…

编译ffmpeg动态库时设置RPATH为$ORIGIN

原本&#xff0c;我这样编译: ./configure \--enable-xxx \--disable-yyy \...为了设置 RPATH, 尝试了在 configure 后面设置&#xff0c;如下几种都无效: --extra-ldsoflags"-Wl,-rpath,$ORIGIN" 没有 RPATH--extra-ldsoflags"-Wl,-rpath,$ORIGIN" 没有…

什么是 DAPP?它能解决什么问题?

在区块链技术日益火热的今天&#xff0c;DAPP 这个概念也逐渐走入人们的视野。但是很多人都听到了DAPP这个词&#xff0c;但是大部分人却还是不清楚什么是 DAPP&#xff1f;它又能解决什么问题呢&#xff1f;接下来这篇文章就带大家了解一下DAPP。 一、什么是 DAPP&#xff1f…

C++ 中的 JSON 序列化和反序列化:结构体与枚举类型的处理

在 C 编程中&#xff0c;处理 JSON 数据是一项常见任务&#xff0c;特别是在需要与其他系统或前端进行数据交换时。nlohmann::json 库是一个功能强大且易于使用的 JSON 库&#xff0c;它允许我们轻松地在 C 中进行 JSON 数据的序列化和反序列化。本文将详细介绍如何使用 nlohma…

ESLint 使用教程(三):12个ESLint 配置项功能与使用方式详解

前言 在现代前端开发中&#xff0c;代码质量与一致性是至关重要的&#xff0c;ESLint 正是为此而生的一款强大工具&#xff0c;本文将带您详细了解 ESLint 的配置文件&#xff0c;并通过通俗易懂的方式讲解其主要配置项及其配置方法。此外&#xff0c;我们还将探讨一些高级配置…

linux可执行文件添加到PATH环境变量的方法

linux可执行文件添加到PATH环境变量的方法 linux命令行下面执行某个命令的时候&#xff0c;首先保证该命令是否存在&#xff0c;若存在&#xff0c;但输入命令的时候若仍提示&#xff1a;command not found 这个时候就的查看PATH环境变量的设置了&#xff0c;当前命令是否存在于…

Android 14 SPRD 下拉菜单中增加自动亮度调节按钮

为了在 Android 14 的下拉菜单中增加自动亮度调节按钮&#xff0c;可以按照以下步骤进行代码修改。 1. 添加图标资源 在 SystemUI 资源文件夹中添加自动亮度图标&#xff1a; 文件路径&#xff1a; frameworks/base/packages/SystemUI/res/drawable/ic_settings_display_wh…

Jenkins应用详解(Detailed Explanation of Jenkins Application)

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 推荐:Linux运维老纪的首页…