当前位置:网站首页>Do you understand this patch of the interface control devaxpress WinForms skin editor?
Do you understand this patch of the interface control devaxpress WinForms skin editor?
2022-07-07 01:04:00 【Interface development Starling】
Regular users may know , A few years ago, the official technical team thoroughly inspected WinForms Skin editor —— This new tool is now called “Skin Editor v2”, It is superior to its predecessor in all possible aspects .Skin Editor v2 Including the hierarchy of skin elements that are easier to find 、 Customizable labels 、 A series of very useful functions ( for example , You can Ctrl+ single click “ preview ” Any element in the panel to get a list of skin parts responsible for the appearance of a given element ), Support vector skin and palette .
obtain DevExpress WinForms v22.1 Official download
The enhancements introduced in the updated skin editor have a drawback …… If your goal is to meet the standard DevExpress Slightly modify the skin , You have to create a duplicate skin , This means that you must import and register custom skins . Besides , This process will generate almost the same skin in the skin selector - Original skin and your custom skin . To eliminate duplicates , You must also modify these selectors ( for example , Hide standard “Bezier” Skin and replace it with the one created in the skin editor “My Bezier”).
In order to eliminate these problems ,WinForm Skin editor (v21.1) With skin patch support , This skin patch is directly applied to the standard DevExpress List of visual changes to the skin , Skin patches eliminate generation for your project / Need to import custom skin .
How does this work ?
This is a good example of the skin patch use case : In vector Office 2019 Dock panel title in skin .

If you find the panel title font is too large , You can add BarAndDockingController And in "Docking" Some fonts are set manually . But doing so means no matter how active the skin is , Your hard coded panel fonts will be activated .
You can now repair your skin , Replace hard coding or create a new skin , Start the skin editor and select "New Skin Patch" tab . Enter the patch name 、 Save the local storage folder and destination of the output DevExpress The skin .

Find the element you want to modify , single click "Activate" And edit the required / Appropriate settings . In this example , We need to reduce "Docking" The text size increment of some elements under the category .

The patch is saved as a single .skinpatch file , Save and pass SkinManager.Default.RegisterSkinPatch Method to store it locally 、 Import a stream or assembly into Visual Studio In the project .
namespace MyApp{
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
SkinManager.Default.RegisterSkinPatch(Application.StartupPath +
"\\patches\\O2019C-Fonts.skinpatch");
//uncomment the following line to undo the skin patch
//SkinManager.Default.ResetSkin(SkinStyle.Office2019Colorful);
Application.Run(new MainForm());
}
}
}The figure below shows the standard "Office 2019 Colorful" The skin , It contains a patch , You can increment the text size from 6 Reduce to 2.

You can go further and change more elements in the patch , For example, modify "Docking > Dock Panels > Caption Buttons" Element to reduce button fill and size , This will shrink the panel title to better fit your new title font .
DevExpress WinForm | Download trial
DevExpress WinForm Have 180+ Components and UI library , for Windows Forms Platform to create influential business solutions .DevExpress WinForms It can perfectly build fluency 、 Beautiful and easy to use applications , Whether it's Office Style interface , Or analyze and process a large number of business data , It can be easily competent !
DevExpress Technology exchange group 6:600715373 Welcome to group discussion
边栏推荐
- [force buckle]41 Missing first positive number
- Leetcode(547)——省份数量
- Zynq transplant ucosiii
- Data sharing of the 835 postgraduate entrance examination of software engineering in Hainan University in 23
- Linear algebra of deep learning
- Deeply explore the compilation and pile insertion technology (IV. ASM exploration)
- "Exquisite store manager" youth entrepreneurship incubation camp - the first phase of Shunde market has been successfully completed!
- Installation and testing of pyflink
- Attention slam: a visual monocular slam that learns from human attention
- What kind of experience is it to realize real-time collaboration in jupyter
猜你喜欢

省市区三级坐标边界数据csv转JSON

Js+svg love diffusion animation JS special effects

Attention SLAM:一种从人类注意中学习的视觉单目SLAM

重上吹麻滩——段芝堂创始人翟立冬游记

"Exquisite store manager" youth entrepreneurship incubation camp - the first phase of Shunde market has been successfully completed!

5种不同的代码相似性检测,以及代码相似性检测的发展趋势

学习光线跟踪一样的自3D表征Ego3RT

Configuring OSPF basic functions for Huawei devices

Telerik UI 2022 R2 SP1 Retail-Not Crack

【批处理DOS-CMD命令-汇总和小结】-字符串搜索、查找、筛选命令(find、findstr),Find和findstr的区别和辨析
随机推荐
学习光线跟踪一样的自3D表征Ego3RT
Learn self 3D representation like ray tracing ego3rt
Part IV: STM32 interrupt control programming
深度学习之环境配置 jupyter notebook
【JVM调优实战100例】05——方法区调优实战(下)
Chapter 5 DML data operation
BFS realizes breadth first traversal of adjacency matrix (with examples)
[Batch dos - cmd Command - Summary and Summary] - String search, find, Filter Commands (FIND, findstr), differentiation and Analysis of Find and findstr
There is an error in the paddehub application
Deeply explore the compilation and pile insertion technology (IV. ASM exploration)
Part V: STM32 system timer and general timer programming
「笔记」折半搜索(Meet in the Middle)
STM32开发资料链接分享
Dell Notebook Periodic Flash Screen Fault
Pytorch中torch和torchvision的安装
【JokerのZYNQ7020】AXI_EMC。
paddlehub应用出现paddle包报错的问题
A brief history of deep learning (II)
Return to blowing marshland -- travel notes of zhailidong, founder of duanzhitang
Alexnet experiment encounters: loss Nan, train ACC 0.100, test ACC 0.100