VB可以制作一个像记事本一样的状态栏吗?

发布于 2024-11-02 01:27:54 字数 101 浏览 0 评论 0原文

我使用 vb 2008 制作了一个记事本,我面临着一个问题,我将制作状态栏。

任何想法都会很棒。

注意:我正在使用文本框读取和写入文本

谢谢

I made a notepad using vb 2008 and I am facing a problem who I'd make the Statusbar.

any idea will be great.

Note: I am using the Textbox to read and write text

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心空情空意 2024-11-09 01:27:54

您需要向表单中添加一个 StatusStrip 控件。

要找到它,请打开工具箱,展开“菜单和工具栏”部分,然后双击该控件名为“StatusStrip”。

双击工具箱中的控件会自动将其添加到窗体中,并将​​其停靠在底部,就像在记事本中一样。

控件出现后,您可以通过更改“属性”窗口中的属性来自定义它。如果您想向状态栏添加信息,可以通过在其中添加子控件来实现。单击“新建”图标旁边的下拉箭头,您将看到可能的选项列表:

  • “StatusLabel”— 显示静态文本
  • “ProgressBar”— 显示进度条,指示后台操作的进度
  • “DropDownButton” " — 显示一个下拉按钮,允许选择多个选项
  • “SplitButton” — 显示一个下拉按钮,允许选择多个选项,但也可以通过单击该按钮来调用默认选项。

You need to add a StatusStrip control to your form.

To find it, open the Toolbox, expand the "Menus & Toolbars" section, and double-click on the one named "StatusStrip".

Double-clicking on the control in the Toolbox will automatically add it to your form, and dock it along the bottom, just like it is in Notepad.

Once the control is there, you can customize it by changing properties in the Properties window. If you want to add information to the status bar, you do that by adding sub-controls inside of it. Click the drop-down arrow next to the "new" icon, and you'll see a list of possible choices:

  • "StatusLabel" — displays static text
  • "ProgressBar" — displays a progress bar, indicating the progress of a background operation
  • "DropDownButton" — displays a drop-down button, to allow a choice of multiple options
  • "SplitButton" — displays a drop-down button that allows a choice of multiple options, but also invokes the default option by a single click on the button.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文