VCLSkin 422套豪华皮肤库概述与应用指南

本文还有配套的精品资源,点击获取 menu-r.4af5f7ec.gif

简介:VCLSkin是一个流行的皮肤库,用于增强基于VCL的Delphi和C++Builder应用程序的用户界面。这个资源包含有422套精心设计的皮肤,提供给开发者多样化选择,使得应用程序界面现代化、吸引力强。VCLSkin使得开发者无需深入了解代码即可改变应用外观,从而提升用户体验和软件视觉吸引力。 VCLSkin最全皮肤 422套

1. VCLSkin皮肤库概述

VCLSkin 是一款流行的第三方皮肤库,它为 Delphi 和 C++ Builder 应用程序提供了丰富的视觉皮肤效果。通过它,开发者能够改变界面元素的外观,比如按钮、文本框、菜单、表单等,以实现更加美观、一致的用户界面体验。

VCLSkin 不仅仅提供了一组预设的皮肤样式,它还支持对每个界面组件进行详细的自定义。这使得开发者可以根据应用程序的主题或品牌的视觉要求,制作出独特的界面风格。本文将探讨VCLSkin的基本概念,为读者后续深入学习和应用打下坚实的基础。

2. VCLSkin在Delphi和C++Builder中的应用

2.1 VCLSkin在Delphi中的集成

2.1.1 Delphi环境下的VCLSkin安装步骤

VCLSkin的安装步骤是实现其在Delphi中应用的前提。首先,需要下载VCLSkin的安装包。然后,解压该安装包并运行安装程序。在安装过程中,通常会提示用户选择安装路径以及需要集成的Delphi版本。

安装完成后,需要重启Delphi开发环境,以确保VCLSkin组件能够被正确加载到组件面板中。对于不同的Delphi版本,可能需要按照特定的安装指示进行操作。

2.1.2 Delphi项目中VCLSkin的配置方法

在Delphi项目中,配置VCLSkin通常涉及以下几个步骤:

  1. 打开Delphi项目后,在设计页面的组件面板上找到VCLSkin组件。
  2. 将VCLSkin组件拖拽到主窗体上,它会自动作为窗体的一个子组件。
  3. 通过属性编辑器配置VCLSkin组件的属性,例如指定皮肤文件路径,设置皮肤效果等。
  4. 在窗体的OnCreate事件中编写代码,加载皮肤: VCLSkin1.LoadFromFile('皮肤文件路径');
  5. 如果需要切换不同的皮肤,可以在相应的事件中调用 VCLSkin1.ApplySkin('皮肤名称'); 来应用新的皮肤。

2.1.3 代码逻辑的逐行解读分析

// 示例代码
procedure TForm1.FormCreate(Sender: TObject);
begin
  VCLSkin1.LoadFromFile('C:\Path\To\Your\ кожи.vsk'); // 加载皮肤文件
end;

procedure TForm1.ButtonChangeSkinClick(Sender: TObject);
begin
  VCLSkin1.ApplySkin('newSkin'); // 应用新的皮肤
end;

上述代码的逻辑分析如下:

  1. 第1行和第2行定义了窗体创建事件的处理过程。当窗体被创建时,会触发此事件。
  2. 第3行使用 LoadFromFile 方法加载指定路径的皮肤文件。 'C:\Path\To\Your\кожи.vsk' 应该是存有皮肤定义的文件路径。
  3. 第5行至第7行定义了一个按钮点击事件的处理过程。当用户点击按钮时,会触发此事件。
  4. 第6行使用 ApplySkin 方法应用新的皮肤。 'newSkin' 是皮肤名称,应与实际皮肤文件中定义的名称一致。

2.1.4 参数说明

  • LoadFromFile :这是一个方法,用于加载本地磁盘中的 .vsk 皮肤文件。
  • ApplySkin :这是一个方法,用于应用选定的皮肤名称,需要传递皮肤名称作为参数。

2.2 VCLSkin在C++Builder中的集成

2.2.1 C++Builder环境下的VCLSkin安装步骤

在C++Builder中安装VCLSkin的过程与Delphi中的安装过程类似,但需要考虑到C++Builder对组件包的依赖关系:

  1. 从官方或其他可信赖的资源获取VCLSkin组件包的安装文件。
  2. 在C++Builder中打开“Component”菜单,选择“Install Packages...”以打开包管理器。
  3. 点击“Add”按钮,选择下载的VCLSkin组件包,并安装。
  4. 安装完成后,在组件面板中会出现新的VCLSkin组件。进行重启C++Builder以确保组件正常加载。

2.2.2 C++Builder项目中VCLSkin的配置方法

在C++Builder中配置VCLSkin涉及以下步骤:

  1. 在项目中添加VCLSkin组件到窗体。
  2. 在项目资源文件中设置皮肤文件的路径。
  3. 在窗体的构造函数中添加代码以加载皮肤。
  4. 在需要切换皮肤的事件中调用相应的VCLSkin方法。

2.2.3 代码逻辑的逐行解读分析

// 示例代码
void __fastcall TForm1::FormCreate(TObject *Sender)
{
  VCLSkin1->LoadFromFile(String("C:\\Path\\To\\Your\\кожи.vsk")); // 加载皮肤文件
}

void __fastcall TForm1::ButtonChangeSkinClick(TObject *Sender)
{
  VCLSkin1->ApplySkin(String("newSkin")); // 应用新的皮肤
}

上述代码的逻辑分析如下:

  1. FormCreate 方法在窗体创建时执行,此处代码用于加载皮肤文件。
  2. ButtonChangeSkinClick 方法在按钮被点击时执行,用于切换到新的皮肤。

2.2.4 参数说明

  • LoadFromFile :此方法用于读取本地路径的皮肤文件。
  • ApplySkin :此方法用于更换窗体使用的皮肤。

以上步骤提供了一个通用的VCLSkin集成流程,无论是Delphi还是C++Builder,主要区别在于安装包管理和代码编辑的细节。接下来,我们将继续探讨如何利用422套皮肤提供多样化选择,以满足不同项目和用户界面风格的需求。

3. 422套皮肤提供多样化选择

3.1 探索皮肤样式库

3.1.1 皮肤样式的分类

VCLSkin库中的422套皮肤样式根据设计风格和功能可以被归类为不同的主题。这些主题帮助开发者在创建应用程序时,快速选择合适的视觉风格以匹配应用程序的使用场景和目标用户。分类通常包括但不限于以下几种:

  1. 现代风格:这种风格的皮肤通常具有简约的布局和扁平化的设计元素,适合商务和科技类应用程序。
  2. 艺术风格:这类皮肤样式富含个性化设计,色彩鲜明,具有很高的视觉冲击力,适合创意行业和娱乐软件。
  3. 经典风格:以传统的按钮和窗口样式为主,给用户一种复古的感觉,适合一些需要模拟旧系统风格的应用。
  4. 自然风格:模仿自然界中的元素和色彩,给人以和谐、温馨的感觉,适用于医疗保健和儿童教育类软件。

选择皮肤样式时,开发者应当考虑应用程序的定位和用户群体,从而提供最佳的用户体验。如在医疗软件中使用经典的皮肤,可增强用户的信任感,而在儿童教育软件中使用自然风格的皮肤,可营造愉悦的学习环境。

3.1.2 如何挑选合适的皮肤样式

挑选合适的皮肤样式不仅是一个审美过程,更是一个需要考虑用户心理和产品目标的过程。以下是几个挑选合适皮肤样式的建议步骤:

  1. 确定目标用户群体 :不同年龄段、职业和兴趣的用户对视觉风格的偏好差异较大。确定目标用户群体有助于缩小皮肤样式的范围。
  2. 考虑应用主题 :应用的功能、用途以及它所要传达的信息,决定了什么样的视觉风格更匹配。例如,一个具有严肃主题的法律咨询应用就不适合使用过于活泼和娱乐化的皮肤。

  3. 测试用户偏好 :进行用户调查或者用户测试,以了解不同皮肤样式对目标用户的吸引力,这有助于决定最终的选择。

  4. 考虑颜色和布局 :颜色对人的情绪和行为有着直接的影响。确保所选皮肤的颜色符合应用的氛围,并且布局符合用户的操作习惯。

  5. 尝试多种搭配 :在实际项目中试用几种不同的皮肤样式,并观察用户反馈和使用数据,最终决定最适合的样式。

  6. 保持一致性和专业性 :选择的皮肤样式需要与应用的整体设计风格保持一致性,这有助于建立专业形象。

3.2 皮肤自定义与编辑

3.2.1 修改现有皮肤的元素

在VCLSkin库中,开发者不仅可以直接使用现有的422套皮肤,还能根据需要对现有皮肤进行修改。皮肤元素的修改可以从以下几个维度进行:

  1. 颜色修改 :修改控件的颜色以适应应用的主题色,或者为了提供夜间模式等不同场景下的用户体验。

  2. 字体调整 :不同的字体样式和大小直接影响到用户的阅读体验,因此需要选择适合应用风格和用户群体的字体。

  3. 按钮和图标 :按钮的样式和图标的风格可以极大地影响界面的视觉效果。它们可以被修改为具有特殊形状、渐变或者3D效果等。

  4. 布局调整 :对界面的布局进行微调,可以优化用户的操作路径,提高效率。

修改皮肤元素时,应确保改变后的样式仍然保持整体的和谐统一,并且易于用户的操作理解。

3.2.2 创建自定义皮肤的流程

创建一个自定义皮肤通常包含以下步骤:

  1. 分析需求 :明确需要创建新皮肤的目的和需求,比如是为了符合公司品牌形象,还是为了在特定的市场上脱颖而出。

  2. 设计概念 :设计皮肤的整体概念,包括颜色方案、风格元素等。

  3. 工具准备 :准备相应的皮肤编辑工具,VCLSkin库可能提供专用的编辑器,或者使用图像编辑软件进行设计。

  4. 创建样式 :利用VCLSkin编辑器中的工具和选项,创建新的控件样式和界面布局。

  5. 测试和调整 :将创建的皮肤应用到实际项目中,并进行充分的测试,根据反馈进行必要的调整。

  6. 发布和维护 :一旦皮肤设计完成并且通过测试,就可以发布供其他开发者使用。定期更新和维护皮肤,以适应操作系统的更新和用户的新需求。

在创建自定义皮肤时,充分理解目标用户群体和应用的使用场景至关重要。同时,确保自定义皮肤在多种平台和设备上均能保持良好的兼容性和性能。

在接下来的章节中,我们将深入探索皮肤文件格式解析以及如何通过高级技巧来定制皮肤,进一步提升用户体验。

4. 皮肤格式与自定义

在这一章节中,我们将深入探讨VCLSkin皮肤库的文件格式,解析其结构,并提供一些自定义皮肤的高级技巧。了解这些内容对于希望深度定制应用程序界面的开发者来说至关重要。

4.1 皮肤文件格式解析

4.1.1 标准VCLSkin文件结构

VCLSkin文件通常包含了多个部分,其中最为重要的包括属性定义、控件皮肤定义以及图片资源等。这些文件大多数是基于XML格式,有着良好的可读性。下面是一个VCLSkin文件结构的示例:

<?xml version="1.0" encoding="utf-8"?>
<VCLSkin version="1.0">
    <SkinInfo>
        <Name>MyCustomSkin</Name>
        <Version>1.0</Version>
    </SkinInfo>
    <Properties>
        <Property name="Color" value="clSkyBlue"/>
        <Property name="Font" value="Arial,12"/>
    </Properties>
    <Controls>
        <Control type="TButton">
            <States>
                <State name="Normal">
                    <Property name="Color" value="clWhite"/>
                </State>
                <State name="Hot">
                    <Property name="Color" value="clLime"/>
                </State>
                <State name="Down">
                    <Property name="Color" value="clRed"/>
                </State>
            </States>
        </Control>
    </Controls>
</VCLSkin>

解析VCLSkin文件时,开发者可以注意到每个控件类型都有对应的 <Control> 标签,其中 <States> 定义了控件在不同状态下的属性,例如正常、热态和按下状态。

4.1.2 高级皮肤文件特性分析

高级的VCLSkin文件可能会包含更多复杂的功能,比如事件绑定、动画效果以及更复杂的样式继承等。例如,添加动画效果可能需要使用额外的属性和参数,如下所示:

<Control type="TTimer">
    <Events>
        <Event name="OnClick">
            <Animation type="FadeIn" duration="500"/>
            <Animation type="Move" x="100" y="100" duration="1000"/>
        </Event>
    </Events>
</Control>

在这个例子中,为TTimer控件添加了点击事件的动画效果,其中包括淡入(FadeIn)和移动(Move)两种动画,指定动画的持续时间。

4.2 皮肤自定义的高级技巧

4.2.1 皮肤属性的进阶设置

为了实现更高级的皮肤自定义,开发者需要了解如何使用VCLSkin提供的各种属性。这里有一些关键点:

  • 控件状态的细化 : 控件可能需要根据不同状态(如按下、悬停、获得焦点等)来显示不同的样式。开发者可以通过 <States> 标签来定义这些状态并为它们设置特定的属性。

  • 样式继承 : 在高级应用中,可以创建一个基本样式,并让其他样式继承这个基本样式。例如,如果你想要大多数按钮有一个相同的样式,但某些按钮需要有特殊颜色或大小,可以先定义一个通用的按钮样式,然后在特殊按钮中重写特定属性。

  • 动态属性 : 皮肤文件可以设置动态属性,这意味着属性值可以根据运行时的条件动态改变,例如根据系统颜色或者当前日期等。

4.2.2 应对复杂界面的定制策略

面对复杂的用户界面,设计师需要制定一套系统的定制策略。以下是几个策略建议:

  • 模块化 : 将界面分解为多个模块,每个模块一个皮肤文件,这样便于管理和修改。

  • 组件化 : 利用组件化设计可以使得皮肤更加灵活,例如使用第三方库或者自定义控件来增强功能。

  • 兼容性测试 : 在自定义皮肤时,需要考虑不同操作系统和屏幕分辨率下的兼容性问题,确保皮肤在所有目标平台上都表现良好。

  • 用户反馈 : 用户反馈是改进界面的重要信息来源。定制皮肤时,应该基于用户反馈来调整和完善。

通过以上的深入解析和策略指导,开发者可以更好地理解和掌握VCLSkin皮肤库的文件格式和自定义技巧,从而创建出既美观又具有高度可定制性的应用程序界面。

5. 用户界面个性化与用户体验提升

在现代软件开发中,用户界面(UI)的个性化设计已经成为了提升用户体验(UX)的关键因素。随着技术的进步和用户需求的多样化,UI设计不仅仅局限于传统的功能实现,更多的需要考虑如何让界面与用户产生情感上的共鸣。VCLSkin皮肤库提供了422套预设皮肤,这些丰富的视觉资源可以帮助开发者快速实现用户界面的个性化定制,并显著提升用户体验。

5.1 用户界面个性化的设计理念

5.1.1 个性化UI的市场趋势

随着数字时代的到来,用户对个性化和定制化服务的需求日益增长。市场上的成功案例,如苹果公司的产品,向我们展示了个性化设计在市场竞争中的优势。在软件产品中,用户界面的个性化设计能够满足不同用户群体的特定需求,提高用户粘性,并通过差异化设计来突出产品的特色。

个性化UI趋势的发展与多种因素有关,包括但不限于:

  • 用户对美观和品味的追求。
  • 设备和平台的多样化,要求设计能够跨平台适应。
  • 用户体验在产品竞争力中的比重不断上升。

5.1.2 用户界面个性化对用户体验的影响

个性化UI设计的核心目标是提升用户体验。一个良好的用户体验应该包含易用性、可访问性、愉悦性和个性化等方面。用户界面个性化直接关联到以下用户体验的关键点:

  • 易用性 :通过个性化设计,用户可以更快地适应界面布局和功能,降低学习成本。
  • 愉悦性 :审美上的满足感能够使用户在使用过程中获得愉悦,从而提升整体满意度。
  • 记忆性 :个性化的UI元素有助于提升用户对品牌的记忆度,从而增强忠诚度。

在设计过程中,开发者需要结合用户研究数据,分析目标用户的偏好,并据此进行个性化设计。例如,年轻用户可能更倾向于时尚、现代的设计风格,而中老年用户可能偏好简单、清晰的界面。VCLSkin提供了丰富的皮肤样式,为实现这些个性化设计提供了便利。

5.2 422套VCLSkin在提升用户体验中的应用

5.2.1 用户体验案例分析

在实际应用中,VCLSkin皮肤库已经被广泛应用于各种软件项目中,帮助开发者实现用户界面的个性化。通过更换皮肤,开发者可以快速切换软件的外观,无需重写界面代码。

以某款音乐播放器应用为例,该应用通过VCLSkin实现了皮肤的更换功能。当用户想要更改应用的外观时,只需下载相应的皮肤文件,然后在软件的设置中选择新的皮肤,软件界面即可立刻更新,从而给用户提供了一种新颖的体验。

5.2.2 优化用户界面的实践经验

VCLSkin不仅仅提供了皮肤的更换功能,它还允许开发者对皮肤的细节进行调整。例如,开发者可以根据用户行为,动态地调整控件的颜色或透明度,从而引导用户的注意力,优化界面的交互性。

在实际项目中,开发者可以利用VCLSkin的高级功能,例如:

  • 动态皮肤效果 :根据软件运行状态,如开启或关闭特效,自定义动态皮肤效果。
  • 自适应布局 :根据不同的屏幕分辨率和设备,调整界面布局和控件大小,确保界面的适应性。

通过这些高级技巧,开发者可以进一步优化用户界面,使软件更加符合用户的使用习惯,从而提升用户体验。

通过使用VCLSkin皮肤库,开发者可以有效地在软件中实现用户界面的个性化,并通过多样化的皮肤设计,提高用户的参与感和满意度。随着对VCLSkin功能的深入理解和应用,软件产品的用户体验将得到进一步的提升,最终在激烈的市场竞争中脱颖而出。

6. 跨平台视觉适配与现代化界面提升

在当前的软件开发领域中,跨平台应用的开发与视觉适配已成为开发人员面临的重要挑战之一。随着不同操作系统用户界面的多样化,如何设计出既具有一致性又适应不同平台特性的用户界面成为了衡量软件专业度的关键指标。VCLSkin作为一个强大的皮肤库工具,为开发者提供了一种有效手段去实现这一目标。

6.1 跨平台UI设计的挑战

6.1.1 跨平台视觉一致性的重要性

在设计跨平台应用的用户界面时,保持视觉一致性是至关重要的。它有助于用户在不同的操作系统环境中获得相似的体验,从而降低用户的认知负荷,提升品牌的识别度。视觉一致性不仅体现在色彩、字体、图标等视觉元素上,还包括了界面布局、操作流程等交互设计元素。

6.1.2 面对不同操作系统的适配策略

对于Windows、macOS、Linux等多种操作系统,开发者需要考虑如何进行适配才能保持界面的美观和功能性。例如,在macOS上,需要遵循Apple的Human Interface Guidelines,而在Windows上则应遵循Microsoft的UI设计原则。通过使用VCLSkin,开发者可以将界面元素抽象化,并通过皮肤来调整这些元素,以适应不同的平台需求。

6.2 应用程序界面的现代化改造

6.2.1 界面现代化的设计原则

现代化的用户界面设计强调简洁、直观和流畅的用户体验。随着扁平化设计、响应式设计等设计理念的兴起,界面设计的流行趋势不断演变。在进行界面现代化改造时,应注重以下原则:

  • 简化操作流程: 通过减少不必要的步骤和界面元素,使用户能更快地达成目标。
  • 响应式布局: 设计自适应不同屏幕尺寸和分辨率的界面。
  • 一致性: 确保整体设计风格和操作逻辑在不同视图和控件之间保持一致。

6.2.2 应用VCLSkin实现界面现代化的案例分享

让我们通过一个具体案例来说明如何使用VCLSkin进行界面现代化改造。假设我们需要为一款Windows应用程序添加现代化的用户界面。

首先,你需要下载并安装VCLSkin库,然后在你的Delphi或C++Builder项目中引用它。具体步骤如下:

  1. 在Delphi中,选择 Component -> Install Packages... ,然后添加VCLSkin的DPK包。
  2. 在C++Builder中,通过 Component -> Install Packages... ,添加VCLSkin的BPL包。
  3. 在项目中添加 TsknSkinManager 组件,以管理所有皮肤操作。
  4. TsknSkinManager SkinFile 属性中指定皮肤文件。

一旦设置了VCLSkin,你可以开始选择并应用预设的皮肤,或者创建自定义的皮肤文件,以符合现代化界面的设计需求。使用VCLSkin的好处在于,只需修改皮肤文件,就可以轻松地为应用程序更换整体风格,而无需改动任何代码。

下面是一个简单的代码示例,展示如何在Delphi中使用TsknSkinManager来更换皮肤:

procedure TForm1.ApplyNewSkin;
var
  SkinName: string;
begin
  SkinName := 'ModernSkin.skn'; // 假设这是你下载的一个现代化皮肤文件
  if FileExists(SkinName) then
  begin
    SknSkinManager1.SkinsPath := ExtractFilePath(SkinName);
    SknSkinManager1.SkinsAvailable := True;
    SknSkinManager1.ActiveSkin := ExtractFileName(SkinName);
  end
  else
    ShowMessage('Skin file not found!');
end;

在这个示例中, SknSkinManager1 是在设计时添加到主窗体上的TsknSkinManager组件。当执行 ApplyNewSkin 过程时,程序会尝试加载名为 ModernSkin.skn 的皮肤文件。

通过使用VCLSkin,开发者可以快速实现应用程序界面的现代化改造,从而提升用户的整体体验。并且随着软件更新,可以轻松替换新的皮肤,保持界面的新鲜感和吸引力。

本文还有配套的精品资源,点击获取 menu-r.4af5f7ec.gif

简介:VCLSkin是一个流行的皮肤库,用于增强基于VCL的Delphi和C++Builder应用程序的用户界面。这个资源包含有422套精心设计的皮肤,提供给开发者多样化选择,使得应用程序界面现代化、吸引力强。VCLSkin使得开发者无需深入了解代码即可改变应用外观,从而提升用户体验和软件视觉吸引力。

本文还有配套的精品资源,点击获取 menu-r.4af5f7ec.gif

Delphi VCLSkin 5.30 website : http://www.link-rank.com email : info@link-rank.com VCLSkin is a component to create skinnable user interface for Delphi/C++Builder application, It is easy to use, just put one component on mainform, Vclskin will skin whole application without source code modification. Vclskin is leader in this field, Vclskin support most third-part controls in market, there isn't a competitor was able to support 3rd-part controls as many as Vclskin. VclSkin automatically skin kinds of windows in application, include Delphi forms,MDIform and common Windows dialogs (MsgBox,Open/Save,Font,Print), even the Exception MsgBox. Vclskin not only support Delphi standard controls, but also support many third-party component, such as TMS Grid pack, EnLib Grid, Developer Express QuantumGrid. It is an excellent choice for those wanting to skin existing applications. The cool thing is that it uses existing VCL components. -Install Run install.exe to install. You also get help in help.chm -Demo The demo package download at: http://www.link-rank.com/download.htm Demo version adds a string 'VclSkin demo' on form caption, but allows to test all available functions. -History News In 5.30 05/20/2009 *Fix bugs in windows 7. News In 5.25 04/14/2009 *Add xoCaptionButtonHint in skindata.options to hide hint of caption button, to upgrade new version: 1 run uninstall.exe in demo package. 2 compile and install new version. News In 5.20 03/05/2009 *fix problem on hint on caption button. News In 5.14 11/04/2008 *fix unicode problem in delphi 2009 News In 5.12 11/04/2008 *fix bug in hint for caption button News In 5.11 11/03/2008 *support hint for caption button News In 5.10 09/17/2008 *support delphi 2009 News In 5.04 08/16/2008 *fix bug in BCB2007. News In 5.1 05/29/2008 *fix bug in TBitbtn. News In 4.99 05/07/2008 *fix bug in Tprogressbar. News In 4.98 04/23/2008 *fix bug in Tbutton. News In 4.97 04/20/2008 *fix bug in Tlistview. News In 4.96 03/25/2008 *fix bug in Tlistview. News In 4.95 03/13/2008 *fix bug in dll forms. News In 4.94 11/13/2007 *Skip to skin control in Skindata.OnSkinControl event. News In 4.93 11/13/2007 *Support PNGspeedbutton. News In 4.92 11/06/2007 *Fix combobox button problem when form is scaled. News In 4.91 10/02/2007 *Support QuantumGrid 6. News In 4.90 09/03/2007 *Support C++builder 2006, c++builder 2007. News In 4.89 07/26/2007 *Fix problem with Multilizer . News In 4.88 07/18/2007 *Fix form icon problem . News In 4.87 07/10/2007 *Fix problem in Form Caption News In 4.86 06/13/2007 *Fix problem in TDateTimePicker News In 4.85 06/06/2007 *Fix problem in TDateTimePicker News In 4.83 05/18/2007 *Fix problem in Dev Dbtreeview. News In 4.82 05/11/2007 *Improve image quality of form icon. News In 4.81 04/30/2007 *Fix menu border problem. News In 4.80 04/20/2007 *Fix menu border problem in windows2000. News In 4.76 04/11/2007 *Support application Icon updated at runtime. News In 4.75 04/04/2007 *Fix default button problem. News In 4.72 02/27/2007 *Fix form paint problem when cpation changed. News In 4.60 02/09/2007 *Support Help button in form system button. News in 4.55 01/31/2007 *Fix problem that right click caption on Dll form. News in 4.53 01/22/2007 *Fix problem on multi-lines caption header in Listview. News in 4.52 01/11/2007 *Fix problem in DatetimePicker when it resize. News in 4.50 01/03/2007 *Fix problem work with Billenium Effects. News in 4.42 12/06/2006 *skindata.skincontrols option work in window common dialog. News in 4.41 11/13/2006 *fix problem in TImageEnOpendialog. News in 4.40 11/09/2006 *fix problem with Billenium Effects. News in 4.36 10/21/2006 *Fix popupmenu problem in win98 . News in 4.35 10/20/2006 *Fix problem when combobox right-to-left . News in 4.33 10/11/2006 *Fix problem when checkbox and radiobutton is right-to-left reading . News in 4.32 10/03/2006 *Fix problem of button shortcut. News in 4.31 9/25/2006 *Support Toolbarwindow32 in Opendialog. News in 4.30 9/7/2006 *Fix Caption problem in bidiRighttoLeft form. News in 4.25 9/5/2006 *Fix Mainmenu problem in MDIform with bidiRighttoLeft. News in 4.22 8/28/2006 *Fix problem when Menuitem text is right-to-left reading . News in 4.21 8/21/2006 *Fix problem when form caption is right-to-left reading . News in 4.20 8/18/2006 *Fix problem when form Max/Min button is disable. *Change skin file format. News in 4.13 8/14/2006 *unskin dialog when download file in webbrowser. News in 4.12 7/30/2006 *Fix problem when form Max/Min button is disable. News in 4.11 6/25/2006 *Change Grid.fixedcolor when skin file changed. News in 4.10 6/14/2006 *Add BeforeFormSkin and AfterFormSkin event. News in 4.09 6/07/2006 *fix bug in MDIchild when form create and change form caption. News in 4.08 5/25/2006 *(5/26)Fix bug in TSkinControl.GetParentColor . *Change Tabcontrol background color. News in 4.07 5/10/2006 *Fix problem TScrollbar control. News in 4.07 5/5/2006 *Fix problem in Mainmenu. News in 4.06 4/19/2006 *Fix combobox scrollbar problem. News in 4.05 4/18/2006 *Fix scrollbar problem when grid is disable. *Fix Mainmenu problem in Windows95 News in 4.04 4/10/2006 *Fix Mainmenu problem in MDIform. *Fix Menu merge problem in Win98. News in 4.03 4/01/2006 *Fix problem in TCheckbox and TRadiobutton when BiDimode=bdRighttoLeft. *Fix problem when Menuitems have Actions. News in 4.02 3/28/2006 *Fix problem in TSpeedbutton when size is zero. *Support scrollbar in drop-down of combobox. News in 4.01 3/16/2006 *fix problem with trackbar when skin active *support TCategoryButtons in delphi2006 News in 4.0. 3/9/2006 *Fix problem when skin file do not have checkbox image. *Fix bug when click button and move mouse. *Fix bug with TVirtualTreeview. News in 3.99 3/3/2006 *Fix bug when skindata.skinformtype=sfOnlyThisForm *Fix bug in TcxRadioGroup *Fix bug in TDateTimePicker *Fix bug in TMediaPlayer. News in 3.98 2/24/2006 * Support TPageControl with tsButton style. * Fix problem on Mainmenu with ActionList. News in 3.97 2/16/2006 * Fix problem when Groupbox in ScrollBox. *Fix problem with newest TNTcontrol. News in 3.96 2/6/2006 * Fix problem with TTrayIcon. * Fix problem bug with TMainmenu. News in 3.95 1/25/2006 * Fix flicker problem about TSpeedbutton. * Fix flicker problem when form caption change. News in 3.94 1/25/2006 * Fix bug in TPopupMenu. add 'xoMenuBG' in skindata.options to support menuitem with mbBarBreak. News in 3.93 1/18/2006 * Fix bug in TDateTime. News in 3.92 1/12/2006 * Fix paint bug in TTabcontrol. * Fix paint bug in Checkbox and radiobutton without caption . News in 3.91 1/8/2006 * Fix bug in Mainmenur. News in 3.90 1/1/2006 * Fix bug in TrackBar. News in 3.89 12/31/2005 * Fix bug in form with BorderStyle=bsNone. *Fix mainmenu bug in MDIForm. News in 3.88 12/26/2005 *Fix bug in THeaderControl. *Support TcxTreeList, TcxNavigator in Dev express controls. News in 3.87 12/22/2005 *Paint minimized form. *Fix bug in TPageControl. News in 3.85 12/13/2005 *Fix a crush bug. News in 3.84 12/5/2005 *Support TPnbBitBtn. *fix flicker in Tpagecontrol. *Fix GDI leak problem. News in 3.83 12/2/2005 *Fix problem that toolbar Backbround is too dark . News in 3.82 12/1/2005 *Fix bug when form maximize. News in 3.81 11/29/2005 *Support TMediaPlayer control. News in 3.80 11/20/2005 *Fix some skin files. *Fix bug on ImageEn SaveImageEnDialog. News in 3.72 11/10/2005 *Fix bug in TScrollbar when its min is negative. *Fix bug in Tmainmenu. News in 3.71 11/5/2005 *change caption text color to gray when checkbox or radiobutton is disable. *Fix paint problem in Tbitbtn when caption is empty. *Fix bug of changing skin file when Skindata.SkinFormtype = sfOnlyThisForm. News in 3.70 10/27/2005 *Support TAdvPageControl. *Support TRzMenuButton, TcxButton with cxbkDropDownButton. *work with RECREATEWND message for skined control has scrollbar. *Fix a memory leak bug. *Fix paint bug for TPagecontrol in win95. News in 3.65 10/21/2005 *Add TSkindata.Options.xoMDIChildBorder which do not skin MDIChild form's border. News in 3.64 10/19/2005 *Fix problem when skindata.skincontrols.xcMainMenu is flase. News in 3.63 10/15/2005 *Support THeaderControl. News in 3.62 10/13/2005 *fix bug in SystemMenu. News in 3.61 10/11/2005 *fix bug in TcxDbCheckbox. *fix paint problem in Tcheckbox when Alignment is taLeftJustify. News in 3.60 10/10/2005 *Vclskin can run in Win95. News in 3.52 10/6/2005 *Fix paint problem of form border. News in 3.51 10/4/2005 *Fix paint problem in checkbox with big image. News in 3.50 9/25/2005 *Support Mouse Hover in Scrollbar. *Add Mouse thumb gripper in Scrollbar. News in 3.41 *Fix some problem in Button when mouse move. News in 3.40 2005.9.21 *Support Hover state in Header control. *Improve on TrackBar *Fix problem to unskin radiogroup. News in 3.38 2005.9.13 *Fix icon problme in MDIChild. News in 3.37 2005.9.12 *Fix font color problem in TButton when button is focused. News in 3.36 2005.9.9 *Fix font color problem in Tgroupbox,radiobutton,checkbox. News in 3.35 2005.9.5 *Support TGroupbox font color. News in 3.34 2005.8.31 *Fix paint problem in Trackbar when skin file change. News in 3.33 2005.8.29 *Fix problem in TcxDBCheckbox. News in 3.32 2005.8.25 *Add close button on TPageControl. News in 3.31 *fix problem when righ click form caption that BorderIcons:=[] News in 3.30 *fix problem that show normal window border when windows first show. *fix resize problem when form border is bsSingle. News in 3.29 *System menu is NOT only English.It support Language in windows. *Fix some problem in DLL applicaton. News in 3.28 * fix paint bug in checkbox and radiobutton in windows common dialog. News in 3.27 *fix bug in TTntDateTimePicker. *fix paint problem in TPageControl. News in 3.26 *Support Popupmenu in TFrame. News in 3.25 * fix Icon problem in MDIChild form. * fix caption paint problem in MDIForm. News in 3.24 * Fix Icon problem in MDIChild form. * fix paint problem in Tbitbtn. * Add feature that Skin file Preview image saved in skin-builder. * Add xcTrackbar and xcSpin. News in 3.23 * Support wordwrap in Bitbtn and speedbutton. * Fix scrollbar problem in TImageScrollBox. News in 3.22 * fix transparent problem in button. News in 3.21 * Fix paint problem in TSpidEdit. * Support owner-MeasureItem event in Popupmenu. News in 3.20 * support toolbar background. * support workwrap in checkbox and radiobutton. News in 3.14 *fix mainmenu merge problem . *fix flicker problem in transparent background . News in 3.13 *fix scrollbar problem when form move. *fix bug in DLL form. *fix Edit control focus problem in MDIChild. *fix formresize problem when skin file change. News in 3.12 * Add Focus border on checkbox,radiobutton,button. * Support Transparent Background on Checkbox,Radiobutton,Groupbox. * Support WS_EX_APPWINDOW style. * fix MDIchild problem in TBX. * improve on RzRadiobutton. News in 3.11 *Support runtime package. *support ALT,ALT-Space. *support hint for scrollbar control *fix Z-order problem when skin change. *fix shortcut problem. News in 3.10 *Support TBX. *Support TNT MDIChild Form. *Support more FastReprt button control. News in 3.08 *Fix problem in TOpenImageEnDialog. *Paint Border in scrollbar control. *Fix checkbox paint problem in Dibiright *Fix Tscrollbox problem. *Support LMD Elpack. *Fix problem that Control without parent. *Fix bug in skin file change. News in 3.07 *Fix problem when BiDiRight Mainmenu popup. *Fix bug in 3.06,3.05 when skin remove at runtime. News in 3.06 *Fix bug in C++Builder. *Fix bug in scrollbar resize. *Fix bug in Delphi7 XPmanifest component. News in 3.05 *Fix bug when move controls in different forms. *Fix problem in TStatusbar that is simple and DiBiRight. News in 3.04 *Fix Tscrollbox problem in delphi5. *Fix Mainmenu display problem in BIDIRight. *Fix font color problem in TSpeedbutton when it is disable. *Fix bug in TntCombobox. *Fix skinfile mxskin59.skn when form is maximized. News in 3.03 *Fix bug in dockable form. *Support Tbutton onMouseDown event. News in 3.02 *Fix Combobx problem in BIDIRight. *Fix MOUSE WHEEL problem in Tlistbox. *Fix Scrollbar problem when control is invisible. News in 3.01 *Fix problem in Inherited-MDIchild. News in 3.0 *Scrollbar flicker problem fixed. *Redundant separator bars in menu are automatically removed. *Add xoMDIScrollbar to show scrollbar in MDIClient area. News in 2.77 * Support TspinButton. * Support TRzDBCheckbox. * Fix paint problem when MDIform lost focus. * Fix AV bug in application close; * Fix bug when change skin file in multi-skins application. * Fix problem about skin delay. News in 2.76 * 4 new skin file released. * fix some bug in Opendialog. News in 2.75 * Fix bugs in IP4000 combobox * Add install.exe and uninstall.exe * Add "embedscrollbar" in Skindata.skin3rd to support TAdvpanelGroup's scrollbar. * Fix Colorpicker Popupmenu problem in WwRichEdit form. * Support SpinEdit now. * Fix TScrollbox problem in delphi5 or c++builder5. News in 2.74 * Delphi 2005 support. * Enable/Disable skin control at runtime. * Fix bug in MDIForm menu merge. * Add "xcMenuitem" in skincontrols property. * skip to skin QuickReport preivew form. News in 2.73 * Fix bugs in MDIForm when MDIChild is maximized. * Fix bug of form Caption in Chinese. News in 2.72 * Support TNT Unicode Controls . * Support menu in Tookbar2000 . * fix bug in MDIform close. * fix bug in TScrollbar control. * fix bug in TDateTimePicker when TDateTimePicker.kind is dtkTime. News in 2.71 * fix bugs of MDIChild form. * support progressbar with pbVertical style. * support preset color in skin file. * support speedbutton in skin3rd property. News in 2.70 * fix bug in embeded form. * fix bug of MDIform with Expressbar. * fix bug of form caption refresh when skin change. * fix trackbar refresh bug when skin change. * fix Quickreport , reprotbuilder preview form problem. * Support Raize TRzbitbtn with ImageList. * Support TComboboxex. News in 2.69 *Support Raize TRzbitbtn with glyph. *Support TMS TAdvMemo. *Fix bug of mainmenu shortcut in MDIform. News in 2.68 *Fix bugs in mainmenu. *Fix Icon bug in dialog. News in 2.67 *Fix DBEdit paint bug. *Fix Icon paint bug. News in 2.66 *Use Memory Inifile. *Fixed bug in multiskin demo. *Fixed MDIform Tile and Cascade problem. *Fixed bugs in default button and disable button. *Add LMD tools 7.0 demo. News in 2.65 *Paint with gray glyph when Speendbtn is disable. *Fixed Topendialog resize problem *Fixed shortcut problem in menuitem. *Add Raized component demo. *Add QuantumGrid4 demo. *Add IP4000 demo. News in 2.62 *Paint TGroupbox with new style. *Fixed bug in painting TSpeedbutton pictures. *Fixed bug in application closed. News in 2.60 *Support Arabic language, BiDiMode is righttoleft. *Fixed some bugs when application closed. News in 2.55 *Fixed bug that Tspeedbutton destory at runtime. *Improve performance when change menutitem at runtime. *Fixed OpenDialog bug. News in 2.50 *Support LMD tools. *Fixed bug of checkbox that is disabled . *Add TSkindata.Skin3rd property to add 3rd control easily. News in 2.45 *Some bugs fixed. *Improve compatibility with Billenium effects. News in 2.4 *Support to skin an application but keep the menu bar and title bar the default Windows standard. *DBCheckbox bug fixed. *Fixed bug in cascade,tile command in MIDform. *Bug with minimized state when form created. *Suport ReportBuilder News in 2.3 *Support TUpDown and TSpinEdit. *Support TrackBar. *Restore form size when remove skin. *Fix more bugs. News in 2.25 *Fix bug with QuickReport and FastReport. *Fix bug in Tstatusbar. *Fix bug in Application. News in 2.20 *Support Header control in TlistView. *Fix Menuitem ShortCut bug. *Fix bug that change windows Z-Order when skin change at runtime. *Support Tframe created at runtime. News in 2.10 *Fix Scrollbar drag thumb problem. News in 2.05 *Support multi-skindata in application,Mainform and messagebox can use different skindate. *Nested form support. *Fixed Title flicker problem when form resize. *Support Mainmenu change at runtime. News in 2.0 *skin kinds of windows in your project, Delphi forms,MDIform and common Windows dialogs (MsgBox,Open/Save,Font,Print), even the Exception MsgBox. *Enable/Disable skin at runtime. *fixed many bugs in MDIform. *system menu enchanced.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值