当前位置:网站首页>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
边栏推荐
- Leetcode (547) - number of provinces
- Three methods to realize JS asynchronous loading
- 详解OpenCV的矩阵规范化函数normalize()【范围化矩阵的范数或值范围(归一化处理)】,并附NORM_MINMAX情况下的示例代码
- Openjudge noi 1.7 08: character substitution
- 5种不同的代码相似性检测,以及代码相似性检测的发展趋势
- pyflink的安装和测试
- Fastdfs data migration operation record
- Data processing of deep learning
- [HFCTF2020]BabyUpload session解析引擎
- .class文件的字节码结构
猜你喜欢
BFS realizes breadth first traversal of adjacency matrix (with examples)
threejs图片变形放大全屏动画js特效
Deep understanding of distributed cache design
"Exquisite store manager" youth entrepreneurship incubation camp - the first phase of Shunde market has been successfully completed!
Dell笔记本周期性闪屏故障
[Niuke classic question 01] bit operation
Dell筆記本周期性閃屏故障
Attention SLAM:一種從人類注意中學習的視覺單目SLAM
Part VI, STM32 pulse width modulation (PWM) programming
Summary of being a microservice R & D Engineer in the past year
随机推荐
Lombok makes ⽤ @data and @builder's pit at the same time. Are you hit?
Configuring OSPF basic functions for Huawei devices
Chapter 5 DML data operation
Part 7: STM32 serial communication programming
paddlehub应用出现paddle包报错的问题
What is time
[force buckle]41 Missing first positive number
BFS realizes breadth first traversal of adjacency matrix (with examples)
深度学习框架TF安装
以机房B级建设标准满足等保2.0三级要求 | 混合云基础设施
[Batch dos - cmd Command - Summary and Summary] - String search, find, Filter Commands (FIND, findstr), differentiation and Analysis of Find and findstr
fastDFS数据迁移操作记录
Explain in detail the implementation of call, apply and bind in JS (source code implementation)
Interface (interface related meaning, different abstract classes, interface callback)
界面控件DevExpress WinForms皮肤编辑器的这个补丁,你了解了吗?
Dell筆記本周期性閃屏故障
Alexnet experiment encounters: loss Nan, train ACC 0.100, test ACC 0.100
Telerik UI 2022 R2 SP1 Retail-Not Crack
Openjudge noi 1.7 10: simple password
Data processing of deep learning