前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >c html美化winform,C# WinForm界面美化

c html美化winform,C# WinForm界面美化

作者头像
全栈程序员站长
发布2022-09-02 13:59:41
1.8K0
发布2022-09-02 13:59:41
举报

大家好,又见面了,我是你们的朋友全栈君。

SkinEngine skinEngine = newSkinEngine();publicMain()

{

InitializeComponent();#region 生成皮肤样式按钮

string[] files = Directory.GetFiles(Path.Combine(Application.StartupPath, @”IrisSkin4\Skins”), “*.ssk”, SearchOption.AllDirectories);if (files != null && files.Length > 0)

{//变量

int index = 0; //按钮序号

int space = 10; //按钮间隔

int btnWidth = 130; //按钮宽度

int btnHeight = 30; //按钮高度

int btnCount = 7; //每行按钮个数//每行显示7个按钮

for (int rows = 0; rows < (files.Length % btnCount == 0 ? files.Length / btnCount : (files.Length / btnCount) + 1); rows++)

{//最后一行的按钮个数

int lastCout = files.Length %btnCount;//生成按钮

if (index < (files.Length / btnCount) *btnCount)

{for (int cols = 0; cols < btnCount; cols++)

{

Button btn= newButton

{

Location= new Point(cols * btnWidth + (cols + 1) * space, rows * btnHeight + (rows + 1) *space),

Width=btnWidth,

Height=btnHeight

};string path =files[index];string btnName = path.Substring(files[index].LastIndexOf(@”\”) + 1);

btn.Text=btnName;

btn.Click+= (object sender, EventArgs e) => { skinEngine.Active = true; skinEngine.SkinAllForm = true; skinEngine.SkinFile = path; tsslSkinFile.Text =Path.Combine(Application.StartupPath, btnName); };

Controls.Add(btn);

index++;

}

}else{for (int cols = 0; cols < lastCout; cols++)

{

Button btn= newButton

{

Location= new Point(cols * btnWidth + (cols + 1) * space, rows * btnHeight + (rows + 1) *space),

Width=btnWidth,

Height=btnHeight

};string path =files[index];string btnName = path.Substring(files[index].LastIndexOf(@”\”) + 1);

btn.Text=btnName;

btn.Click+= (object sender, EventArgs e) => { skinEngine.Active = true; skinEngine.SkinAllForm = true; skinEngine.SkinFile = path; tsslSkinFile.Text =Path.Combine(Application.StartupPath, btnName); };this.Controls.Add(btn);

index++;

}

}

}

}#endregion}///

///弹出对话框///

///

///

private void button1_Click(objectsender, EventArgs e)

{

MessageBox.Show(“Hello World.”, “提示”, MessageBoxButtons.OK, MessageBoxIcon.Information);

}///

///恢复默认值///

///

///

private void button2_Click(objectsender, EventArgs e)

{

skinEngine.Active= false;

}

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/140390.html原文链接:https://javaforall.cn

本文参与?腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年5月2,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客?前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与?腾讯云自媒体同步曝光计划? ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
http://www.vxiaotou.com