开发者论坛

 找回密码
 注册 (请使用非IE浏览器)
查看: 5767|回复: 0

现代应用的启动屏幕如何更美观?这款第三方控件你使用...

[复制链接]

0

精华

8

贡献

1768

赞扬

特约版主

帖子
583
软币
4524
在线时间
275 小时
注册时间
2019-2-21
发表于 2021-3-16 09:39:13 | 显示全部楼层 |阅读模式

点击获取DevExpress完整版下载

具有皮肤感知功能的初始屏幕。


  • 颜色和字体设置取决于皮肤。
  • 您可以自定义并在代码中显示此初始屏幕。
显示并关闭启动画面

您可以使用静态SplashScreenManager.ShowSkinSplashScreen方法手动创建并显示皮肤启动屏幕(例如可以在应用程序启动时调用它),该方法的参数允许您指定预定义区域、屏幕位置、淡入淡出动画效果等的内容,下图演示了您可以自定义的初始屏幕区域。


要关闭启动画面,请使用静态SplashScreenManager.CloseForm方法。

C#

[C#] 纯文本查看 复制代码
using DevExpress.XtraSplashScreen;

// Logo image.
Image myLogoImage = Resources.Logo;

// Show a splashscreen.
SplashScreenManager.ShowSkinSplashScreen(
logoImage: myLogoImage,
title: "When Only The Best Will Do",
subtitle: "DevExpress WinForms Controls",
footer: "Copyright © 2000 - 2020 Developer Express Inc." + Environment.NewLine + "All Rights reserved.",
loading: "Starting...",
parentForm: this
);

//Do an operation
//...

//Close the splashscreen
DevExpress.XtraSplashScreen.SplashScreenManager.CloseForm();

VB.NET

[Visual Basic .NET] 纯文本查看 复制代码
Imports DevExpress.XtraSplashScreen

' Logo image.
Dim myLogoImage As Image = My.Resources.Logo

' Show a splashscreen.
DevExpress.XtraSplashScreen.SplashScreenManager.ShowSkinSplashScreen(
logoImage:=myLogoImage,
title:="When Only The Best Will Do",
subtitle:="DevExpress WinForms Controls",
footer:="Copyright © 2000 - 2020 Developer Express Inc." & Environment.NewLine & "All Rights reserved.",
loading:="Starting...",
parentForm:=Me
)

'Do an operation
'...

'Close the splashscreen
DevExpress.XtraSplashScreen.SplashScreenManager.CloseForm()

动态更新启动画面

启动屏幕显示在单独的线程中,您可以使用通过SplashScreenManager.SendCommand方法发送的命令动态更新当前初始屏幕的内容。

C#

[C#] 纯文本查看 复制代码
SplashScreenManager.Default.SendCommand(SkinSplashScreenCommand.UpdateLoadingText, "Done");

VB.NET

[Visual Basic .NET] 纯文本查看 复制代码
SplashScreenManager.Default.SendCommand(SkinSplashScreenCommand.UpdateLoadingText, "Done")

DevExpress.XtraSplashScreen.SkinSplashScreenCommand类型枚举支持的命令。

C#

[C#] 纯文本查看 复制代码
public enum SkinSplashScreenCommand {
UpdateTitle,
UpdateSubtitle,
UpdateFooter,
UpdateLoadingText,
UpdateLogoImage,
UpdateSvgImageSize
}

VB.NET

[Visual Basic .NET] 纯文本查看 复制代码
Public Enum SkinSplashScreenCommand
UpdateTitle = 0
UpdateSubtitle = 1
UpdateFooter = 2
UpdateLoadingText = 3
UpdateLogoImage = 4
UpdateSvgImageSize = 5
End Enum


上DevExpress中文网,获取第一手最新产品资讯!

DevExpress技术交流群3:700924826      欢迎一起进群讨论




回复

使用道具 举报

Archiver|手机版|小黑屋|开发者网 ( 苏ICP备08004430号-2 )
版权所有:南京韵文教育信息咨询有限公司

GMT+8, 2024-4-27 12:42

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表