在 Winforms 中控制用户工作流程 [英] Controlling user workflow in Winforms

查看:14
本文介绍了在 Winforms 中控制用户工作流程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在用 C# 构建一个 Winforms 应用程序,并且我添加了一个具有三个选项卡的选项卡控件.

I'm building a Winforms application in C# and I have added a tab control that has three tabs.

我想限制用户访问第二个标签页的能力,直到用户填写第一个标签页.

I want to restrict user's ability to access the second tab page until user fills out the first tab.

我在第一个选项卡上有一个提交按钮,我希望在用户单击 submit 按钮时能够访问第二个选项卡.

I have a submit button the first tab, I want the second tab to be able to be accessed when the user clicks on the submit button.

我怎样才能做到这一点?

How can I accomplish this?

图片不可用

推荐答案

阻止用户选择选项卡会导致用户界面非常不直观.考虑创建一个向导",这是一个 UI 小工具,可通过下一步"按钮将用户从一个页面带到下一个页面.和一个后退按钮,可选.您可以通过设置 Next 按钮的 Enabled 属性来明确一个步骤已完成.

Preventing a user from selecting a tab makes for a very unintuitive user interface. Consider creating a "wizard", a UI gadget that takes the user from one page to the next with a Next button. And a Back button, optional. You can make it clear that a step is completed by setting the Next button's Enabled property.

可以使用 TabControl 创建这样的向导.向您的项目添加一个新类并粘贴如下所示的代码.编译.将新控件从工具箱顶部拖放到表单上.在设计时,它看起来像一个普通的 TC,允许您添加每个向导步骤所需的控件.在运行时选项卡是隐藏的.实现 Next 和 Back 按钮很简单,只需更改 SelectedIndex 属性即可.

Creating such a wizard can be done with a TabControl. Add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your form. At design time it looks like a normal TC, allowing you to add the controls needed for each wizard step. At runtime the tabs are hidden. Implementing the Next and Back buttons is simple, just change the SelectedIndex property.

using System;
using System.Windows.Forms;

class WizardPages : TabControl {
  protected override void WndProc(ref Message m) {
    // Hide tabs by trapping the TCM_ADJUSTRECT message
    if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
    else base.WndProc(ref m);
  }
}

这篇关于在 Winforms 中控制用户工作流程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆