如何在 c# 中加载某些内容时使用循环进度,而其他 window 仍处于禁用状态
How to used circular progress when something is loading in c# and other window remains disabled
大家好,我想创建一个应用程序,它有进度条,正在加载,其他 window 在 c#
中被禁用
您可以使用 bunify 制作进度条,就像您已经在使用它一样,并且在进度条显示在屏幕中期间 window,您停用了其他 window。
你可以在 winform 中做类似的东西来阻止父 window:
ChildForm child = new ChildForm();
child.Owner = this;
child.Show();
In ChildForm_Load:
private void ChildForm_Load(object sender, EventArgs e) {
this.Owner.Enabled = false;
}
private void ChildForm_Closed(object sender, EventArgs e) {
this.Owner.Enabled = true;
}
关于进度条,你可以看那里:https://bunifuframework.com/products/bunifu-ui-winforms/controls/bunifu-progress-bar/
大家好,我想创建一个应用程序,它有进度条,正在加载,其他 window 在 c#
中被禁用您可以使用 bunify 制作进度条,就像您已经在使用它一样,并且在进度条显示在屏幕中期间 window,您停用了其他 window。
你可以在 winform 中做类似的东西来阻止父 window:
ChildForm child = new ChildForm();
child.Owner = this;
child.Show();
In ChildForm_Load:
private void ChildForm_Load(object sender, EventArgs e) {
this.Owner.Enabled = false;
}
private void ChildForm_Closed(object sender, EventArgs e) {
this.Owner.Enabled = true;
}
关于进度条,你可以看那里:https://bunifuframework.com/products/bunifu-ui-winforms/controls/bunifu-progress-bar/